participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20260314230240_3d3ng" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
| Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
|---|---|---|---|---|---|
| 9483664 | 9483664 | 20260314230240_3d3ng | UK00DN | 2026-03-16T12:00:21.968Z | 2026-03-23T12:21:43.504Z |
| 9483663 | 9483663 | 20260314230240_3d3ng | UK009W | 2026-03-16T12:00:21.955Z | 2026-03-23T12:21:43.504Z |
| 9483662 | 9483662 | 20260314230240_3d3ng | UK009S | 2026-03-16T12:00:21.950Z | 2026-03-23T12:21:43.504Z |
| 9483661 | 9483661 | 20260314230240_3d3ng | UK009K | 2026-03-16T12:00:21.934Z | 2026-03-23T12:21:43.504Z |
| 9483660 | 9483660 | 20260314230240_3d3ng | UK008X | 2026-03-16T12:00:21.932Z | 2026-03-23T12:21:43.504Z |
| 9483659 | 9483659 | 20260314230240_3d3ng | UK008V | 2026-03-16T12:00:21.908Z | 2026-03-23T12:21:43.504Z |
| 9483658 | 9483658 | 20260314230240_3d3ng | UK008Q | 2026-03-16T12:00:21.878Z | 2026-03-23T12:21:43.504Z |
| 9483657 | 9483657 | 20260314230240_3d3ng | UK008D | 2026-03-16T12:00:21.869Z | 2026-03-23T12:21:43.504Z |
| 9483656 | 9483656 | 20260314230240_3d3ng | UK003C | 2026-03-16T12:00:21.858Z | 2026-03-23T12:21:43.504Z |
| 9483655 | 9483655 | 20260314230240_3d3ng | UK000T | 2026-03-16T12:00:21.848Z | 2026-03-23T12:21:43.504Z |
| 9483654 | 9483654 | 20260314230240_3d3ng | UK0009 | 2026-03-16T12:00:21.842Z | 2026-03-23T12:21:43.504Z |
| 9483653 | 9483653 | 20260314230240_3d3ng | UK0006 | 2026-03-16T12:00:21.806Z | 2026-03-23T12:21:43.504Z |
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);