participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20260217055635_q1o2v" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, created_at (date), updated_at (date)
| Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
|---|---|---|---|---|---|
| 9337599 | 9337599 | 20260217055635_q1o2v | UK005L | 2026-02-18T14:07:37.905Z | 2026-02-26T14:39:27.987Z |
| 9337600 | 9337600 | 20260217055635_q1o2v | UK007A | 2026-02-18T14:07:37.905Z | 2026-02-26T14:39:27.987Z |
| 9337601 | 9337601 | 20260217055635_q1o2v | UK007P | 2026-02-18T14:07:37.905Z | 2026-02-26T14:39:27.987Z |
| 9337602 | 9337602 | 20260217055635_q1o2v | UK0083 | 2026-02-18T14:07:37.905Z | 2026-02-26T14:39:27.987Z |
| 9337603 | 9337603 | 20260217055635_q1o2v | UK008J | 2026-02-18T14:07:37.905Z | 2026-02-26T14:39:27.987Z |
| 9337604 | 9337604 | 20260217055635_q1o2v | UK0090 | 2026-02-18T14:07:37.905Z | 2026-02-26T14:39:27.987Z |
| 9337605 | 9337605 | 20260217055635_q1o2v | UK009P | 2026-02-18T14:07:37.905Z | 2026-02-26T14:39:27.987Z |
| 9337606 | 9337606 | 20260217055635_q1o2v | UK00AJ | 2026-02-18T14:07:37.905Z | 2026-02-26T14:39:27.987Z |
| 9337607 | 9337607 | 20260217055635_q1o2v | UK00BA | 2026-02-18T14:07:37.905Z | 2026-02-26T14:39:27.987Z |
| 9337594 | 9337594 | 20260217055635_q1o2v | UK001L | 2026-02-18T14:07:37.904Z | 2026-02-26T14:39:27.987Z |
| 9337595 | 9337595 | 20260217055635_q1o2v | UK001Z | 2026-02-18T14:07:37.904Z | 2026-02-26T14:39:27.987Z |
| 9337596 | 9337596 | 20260217055635_q1o2v | UK0030 | 2026-02-18T14:07:37.904Z | 2026-02-26T14:39:27.987Z |
| 9337597 | 9337597 | 20260217055635_q1o2v | UK0031 | 2026-02-18T14:07:37.904Z | 2026-02-26T14:39:27.987Z |
| 9337598 | 9337598 | 20260217055635_q1o2v | UK0042 | 2026-02-18T14:07:37.904Z | 2026-02-26T14:39:27.987Z |
Advanced export
JSON shape: default, array, newline-delimited
CREATE TABLE participating_station
(
meteor_unique_trajectory_identifier text NOT NULL,
station_code text NOT NULL,
created_at datetime NOT NULL DEFAULT (
strftime(
'%Y-%m-%dT%H:%M:%fZ', 'now', 'utc'
)
),
updated_at datetime NOT NULL DEFAULT (
strftime(
'%Y-%m-%dT%H:%M:%fZ', 'now', 'utc'
)
),
FOREIGN KEY (meteor_unique_trajectory_identifier) REFERENCES meteor (unique_trajectory_identifier),
FOREIGN KEY (station_code) REFERENCES station (code),
UNIQUE (meteor_unique_trajectory_identifier, station_code) ON CONFLICT IGNORE
);
CREATE INDEX participating_station_station_code_covering_index ON participating_station (station_code, meteor_unique_trajectory_identifier);
CREATE INDEX participating_station_created_at_index ON participating_station (created_at);
CREATE INDEX participating_station_updated_at_index ON participating_station (updated_at);