participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
8 rows where meteor_unique_trajectory_identifier = "20241011041739_dfL5c" 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 |
---|---|---|---|---|---|
5276103 | 5276103 | 20241011041739_dfL5c | UK00CE | 2024-10-12T12:00:24.432Z | 2024-10-20T12:23:05.504Z |
5276101 | 5276101 | 20241011041739_dfL5c | UK008W | 2024-10-12T12:00:24.414Z | 2024-10-20T12:23:05.504Z |
5276102 | 5276102 | 20241011041739_dfL5c | UK00B5 | 2024-10-12T12:00:24.414Z | 2024-10-20T12:23:05.504Z |
5276098 | 5276098 | 20241011041739_dfL5c | UK004F | 2024-10-12T12:00:24.402Z | 2024-10-20T12:23:05.504Z |
5276099 | 5276099 | 20241011041739_dfL5c | UK005V | 2024-10-12T12:00:24.402Z | 2024-10-20T12:23:05.504Z |
5276100 | 5276100 | 20241011041739_dfL5c | UK007Q | 2024-10-12T12:00:24.402Z | 2024-10-20T12:23:05.504Z |
5276097 | 5276097 | 20241011041739_dfL5c | UK0025 | 2024-10-12T12:00:24.388Z | 2024-10-20T12:23:05.504Z |
5276096 | 5276096 | 20241011041739_dfL5c | UK0021 | 2024-10-12T12:00:24.369Z | 2024-10-20T12:23:05.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);