participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20240915011531_WRWYs" 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 |
---|---|---|---|---|---|
5113830 | 5113830 | 20240915011531_WRWYs | UK001L | 2024-09-18T12:04:52.448Z | 2024-09-23T12:16:11.487Z |
5113831 | 5113831 | 20240915011531_WRWYs | UK0026 | 2024-09-18T12:04:52.448Z | 2024-09-23T12:16:11.487Z |
5113832 | 5113832 | 20240915011531_WRWYs | UK0032 | 2024-09-18T12:04:52.448Z | 2024-09-23T12:16:11.487Z |
5113833 | 5113833 | 20240915011531_WRWYs | UK0035 | 2024-09-18T12:04:52.448Z | 2024-09-23T12:16:11.487Z |
5113834 | 5113834 | 20240915011531_WRWYs | UK004D | 2024-09-18T12:04:52.448Z | 2024-09-23T12:16:11.487Z |
5113835 | 5113835 | 20240915011531_WRWYs | UK0050 | 2024-09-18T12:04:52.448Z | 2024-09-23T12:16:11.487Z |
5113836 | 5113836 | 20240915011531_WRWYs | UK0098 | 2024-09-18T12:04:52.448Z | 2024-09-23T12:16:11.487Z |
5113837 | 5113837 | 20240915011531_WRWYs | UK0099 | 2024-09-18T12:04:52.448Z | 2024-09-23T12:16:11.487Z |
5113838 | 5113838 | 20240915011531_WRWYs | UK00AE | 2024-09-18T12:04:52.448Z | 2024-09-23T12:16:11.487Z |
5113839 | 5113839 | 20240915011531_WRWYs | UK00AT | 2024-09-18T12:04:52.448Z | 2024-09-23T12:16:11.487Z |
5113840 | 5113840 | 20240915011531_WRWYs | UK00BF | 2024-09-18T12:04:52.448Z | 2024-09-23T12:16:11.487Z |
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);