participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20260317232417_lL24d" 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 |
|---|---|---|---|---|---|
| 9507599 | 9507599 | 20260317232417_lL24d | UK00BF | 2026-03-19T12:00:42.558Z | 2026-03-26T12:36:45.738Z |
| 9507600 | 9507600 | 20260317232417_lL24d | UK00CQ | 2026-03-19T12:00:42.558Z | 2026-03-26T12:36:45.738Z |
| 9507598 | 9507598 | 20260317232417_lL24d | UK00BA | 2026-03-19T12:00:42.548Z | 2026-03-26T12:36:45.738Z |
| 9507597 | 9507597 | 20260317232417_lL24d | UK00AT | 2026-03-19T12:00:42.538Z | 2026-03-26T12:36:45.738Z |
| 9507596 | 9507596 | 20260317232417_lL24d | UK009P | 2026-03-19T12:00:42.530Z | 2026-03-26T12:36:45.738Z |
| 9507595 | 9507595 | 20260317232417_lL24d | UK008J | 2026-03-19T12:00:42.513Z | 2026-03-26T12:36:45.738Z |
| 9507594 | 9507594 | 20260317232417_lL24d | UK0083 | 2026-03-19T12:00:42.495Z | 2026-03-26T12:36:45.738Z |
| 9507593 | 9507593 | 20260317232417_lL24d | UK0070 | 2026-03-19T12:00:42.480Z | 2026-03-26T12:36:45.738Z |
| 9507592 | 9507592 | 20260317232417_lL24d | UK0067 | 2026-03-19T12:00:42.463Z | 2026-03-26T12:36:45.738Z |
| 9507590 | 9507590 | 20260317232417_lL24d | UK003U | 2026-03-19T12:00:42.450Z | 2026-03-26T12:36:45.738Z |
| 9507591 | 9507591 | 20260317232417_lL24d | UK005S | 2026-03-19T12:00:42.450Z | 2026-03-26T12:36:45.738Z |
| 9507589 | 9507589 | 20260317232417_lL24d | UK000Z | 2026-03-19T12:00:42.431Z | 2026-03-26T12:36:45.738Z |
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);