participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20231206031614_L9GHP" 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 |
---|---|---|---|---|---|
3522853 | 3522853 | 20231206031614_L9GHP | UK000F | 2024-01-06T00:05:01.256Z | 2024-01-06T00:05:01.256Z |
3522854 | 3522854 | 20231206031614_L9GHP | UK002F | 2024-01-06T00:05:01.256Z | 2024-01-06T00:05:01.256Z |
3522855 | 3522855 | 20231206031614_L9GHP | UK002Q | 2024-01-06T00:05:01.256Z | 2024-01-06T00:05:01.256Z |
3522856 | 3522856 | 20231206031614_L9GHP | UK0031 | 2024-01-06T00:05:01.256Z | 2024-01-06T00:05:01.256Z |
3522857 | 3522857 | 20231206031614_L9GHP | UK0041 | 2024-01-06T00:05:01.256Z | 2024-01-06T00:05:01.256Z |
3522858 | 3522858 | 20231206031614_L9GHP | UK004H | 2024-01-06T00:05:01.256Z | 2024-01-06T00:05:01.256Z |
3522859 | 3522859 | 20231206031614_L9GHP | UK0063 | 2024-01-06T00:05:01.256Z | 2024-01-06T00:05:01.256Z |
3522860 | 3522860 | 20231206031614_L9GHP | UK006B | 2024-01-06T00:05:01.256Z | 2024-01-06T00:05:01.256Z |
3522861 | 3522861 | 20231206031614_L9GHP | UK006R | 2024-01-06T00:05:01.256Z | 2024-01-06T00:05:01.256Z |
3522862 | 3522862 | 20231206031614_L9GHP | UK008F | 2024-01-06T00:05:01.256Z | 2024-01-06T00:05:01.256Z |
3522863 | 3522863 | 20231206031614_L9GHP | UK009A | 2024-01-06T00:05:01.256Z | 2024-01-06T00:05:01.256Z |
3522864 | 3522864 | 20231206031614_L9GHP | UK009S | 2024-01-06T00:05:01.256Z | 2024-01-06T00:05:01.256Z |
3522865 | 3522865 | 20231206031614_L9GHP | UK00A4 | 2024-01-06T00:05:01.256Z | 2024-01-06T00:05:01.256Z |
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);