participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20220828005333_SL2nF" 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 |
---|---|---|---|---|---|
1603968 | 1603968 | 20220828005333_SL2nF | UK0001 | 2024-01-05T23:49:36.785Z | 2024-01-05T23:49:36.785Z |
1603969 | 1603969 | 20220828005333_SL2nF | UK001P | 2024-01-05T23:49:36.785Z | 2024-01-05T23:49:36.785Z |
1603970 | 1603970 | 20220828005333_SL2nF | UK001Z | 2024-01-05T23:49:36.785Z | 2024-01-05T23:49:36.785Z |
1603971 | 1603971 | 20220828005333_SL2nF | UK0029 | 2024-01-05T23:49:36.785Z | 2024-01-05T23:49:36.785Z |
1603972 | 1603972 | 20220828005333_SL2nF | UK002W | 2024-01-05T23:49:36.785Z | 2024-01-05T23:49:36.785Z |
1603973 | 1603973 | 20220828005333_SL2nF | UK003C | 2024-01-05T23:49:36.785Z | 2024-01-05T23:49:36.785Z |
1603974 | 1603974 | 20220828005333_SL2nF | UK003D | 2024-01-05T23:49:36.785Z | 2024-01-05T23:49:36.785Z |
1603975 | 1603975 | 20220828005333_SL2nF | UK0041 | 2024-01-05T23:49:36.785Z | 2024-01-05T23:49:36.785Z |
1603976 | 1603976 | 20220828005333_SL2nF | UK0049 | 2024-01-05T23:49:36.785Z | 2024-01-05T23:49:36.785Z |
1603977 | 1603977 | 20220828005333_SL2nF | UK005F | 2024-01-05T23:49:36.785Z | 2024-01-05T23:49:36.785Z |
1603978 | 1603978 | 20220828005333_SL2nF | UK0062 | 2024-01-05T23:49:36.785Z | 2024-01-05T23:49:36.785Z |
1603979 | 1603979 | 20220828005333_SL2nF | UK006B | 2024-01-05T23:49:36.785Z | 2024-01-05T23:49:36.785Z |
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);