participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20260318200728_ALIXi" 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 |
|---|---|---|---|---|---|
| 9530102 | 9530102 | 20260318200728_ALIXi | UK0035 | 2026-03-20T12:24:00.612Z | 2026-03-26T12:39:09.290Z |
| 9530103 | 9530103 | 20260318200728_ALIXi | UK003T | 2026-03-20T12:24:00.612Z | 2026-03-26T12:39:09.290Z |
| 9530104 | 9530104 | 20260318200728_ALIXi | UK005M | 2026-03-20T12:24:00.612Z | 2026-03-26T12:39:09.290Z |
| 9530105 | 9530105 | 20260318200728_ALIXi | UK006P | 2026-03-20T12:24:00.612Z | 2026-03-26T12:39:09.290Z |
| 9530106 | 9530106 | 20260318200728_ALIXi | UK007Y | 2026-03-20T12:24:00.612Z | 2026-03-26T12:39:09.290Z |
| 9530107 | 9530107 | 20260318200728_ALIXi | UK0087 | 2026-03-20T12:24:00.612Z | 2026-03-26T12:39:09.290Z |
| 9530108 | 9530108 | 20260318200728_ALIXi | UK00A3 | 2026-03-20T12:24:00.612Z | 2026-03-26T12:39:09.290Z |
| 9530109 | 9530109 | 20260318200728_ALIXi | UK00AL | 2026-03-20T12:24:00.612Z | 2026-03-26T12:39:09.290Z |
| 9530110 | 9530110 | 20260318200728_ALIXi | UK00C2 | 2026-03-20T12:24:00.612Z | 2026-03-26T12:39:09.290Z |
| 9530111 | 9530111 | 20260318200728_ALIXi | UK00DJ | 2026-03-20T12:24:00.612Z | 2026-03-26T12:39:09.290Z |
| 9530100 | 9530100 | 20260318200728_ALIXi | UK000Y | 2026-03-20T12:24:00.569Z | 2026-03-26T12:39:09.290Z |
| 9530101 | 9530101 | 20260318200728_ALIXi | UK001T | 2026-03-20T12:24:00.569Z | 2026-03-26T12:39:09.290Z |
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);