participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20240914042027_UwaLG" 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 |
---|---|---|---|---|---|
5121888 | 5121888 | 20240914042027_UwaLG | UK000H | 2024-09-18T12:11:02.834Z | 2024-09-22T12:18:03.073Z |
5121889 | 5121889 | 20240914042027_UwaLG | UK0025 | 2024-09-18T12:11:02.834Z | 2024-09-22T12:18:03.073Z |
5121890 | 5121890 | 20240914042027_UwaLG | UK002J | 2024-09-18T12:11:02.834Z | 2024-09-22T12:18:03.073Z |
5121891 | 5121891 | 20240914042027_UwaLG | UK002Q | 2024-09-18T12:11:02.834Z | 2024-09-22T12:18:03.073Z |
5121892 | 5121892 | 20240914042027_UwaLG | UK006S | 2024-09-18T12:11:02.834Z | 2024-09-22T12:18:03.073Z |
5121893 | 5121893 | 20240914042027_UwaLG | UK006X | 2024-09-18T12:11:02.834Z | 2024-09-22T12:18:03.073Z |
5121894 | 5121894 | 20240914042027_UwaLG | UK008D | 2024-09-18T12:11:02.834Z | 2024-09-22T12:18:03.073Z |
5121895 | 5121895 | 20240914042027_UwaLG | UK008Q | 2024-09-18T12:11:02.834Z | 2024-09-22T12:18:03.073Z |
5121896 | 5121896 | 20240914042027_UwaLG | UK00AB | 2024-09-18T12:11:02.834Z | 2024-09-22T12:18:03.073Z |
5121897 | 5121897 | 20240914042027_UwaLG | UK00AP | 2024-09-18T12:11:02.834Z | 2024-09-22T12:18:03.073Z |
5121898 | 5121898 | 20240914042027_UwaLG | UK00B5 | 2024-09-18T12:11:02.834Z | 2024-09-22T12:18:03.073Z |
5121899 | 5121899 | 20240914042027_UwaLG | UK00C7 | 2024-09-18T12:11:02.834Z | 2024-09-22T12:18:03.073Z |
5121900 | 5121900 | 20240914042027_UwaLG | UK00CE | 2024-09-18T12:11:02.834Z | 2024-09-22T12:18:03.073Z |
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);