participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20241122040224_bqwgG" 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 |
---|---|---|---|---|---|
5582833 | 5582833 | 20241122040224_bqwgG | UK0009 | 2024-11-23T14:21:21.502Z | 2024-11-25T14:20:48.231Z |
5582834 | 5582834 | 20241122040224_bqwgG | UK000S | 2024-11-23T14:21:21.502Z | 2024-11-25T14:20:48.231Z |
5582835 | 5582835 | 20241122040224_bqwgG | UK001Z | 2024-11-23T14:21:21.502Z | 2024-11-25T14:20:48.231Z |
5582836 | 5582836 | 20241122040224_bqwgG | UK005V | 2024-11-23T14:21:21.502Z | 2024-11-25T14:20:48.231Z |
5582837 | 5582837 | 20241122040224_bqwgG | UK007B | 2024-11-23T14:21:21.502Z | 2024-11-25T14:20:48.231Z |
5582838 | 5582838 | 20241122040224_bqwgG | UK0084 | 2024-11-23T14:21:21.502Z | 2024-11-25T14:20:48.231Z |
5582839 | 5582839 | 20241122040224_bqwgG | UK008X | 2024-11-23T14:21:21.502Z | 2024-11-25T14:20:48.231Z |
5582840 | 5582840 | 20241122040224_bqwgG | UK009G | 2024-11-23T14:21:21.502Z | 2024-11-25T14:20:48.231Z |
5582841 | 5582841 | 20241122040224_bqwgG | UK009K | 2024-11-23T14:21:21.502Z | 2024-11-25T14:20:48.231Z |
5582842 | 5582842 | 20241122040224_bqwgG | UK009T | 2024-11-23T14:21:21.502Z | 2024-11-25T14:20:48.231Z |
5582843 | 5582843 | 20241122040224_bqwgG | UK00AT | 2024-11-23T14:21:21.502Z | 2024-11-25T14:20:48.231Z |
5582844 | 5582844 | 20241122040224_bqwgG | UK00BF | 2024-11-23T14:21:21.502Z | 2024-11-25T14:20:48.231Z |
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);