participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20240201223933_RfMHT" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
3908882 | 3908882 | 20240201223933_RfMHT | UK009E | 2024-02-03T14:03:27.456Z | 2024-02-10T14:24:45.865Z |
3908883 | 3908883 | 20240201223933_RfMHT | UK009J | 2024-02-03T14:03:27.456Z | 2024-02-10T14:24:45.865Z |
3908884 | 3908884 | 20240201223933_RfMHT | UK009L | 2024-02-03T14:03:27.456Z | 2024-02-10T14:24:45.865Z |
3908885 | 3908885 | 20240201223933_RfMHT | UK00A4 | 2024-02-03T14:03:27.456Z | 2024-02-10T14:24:45.865Z |
3908886 | 3908886 | 20240201223933_RfMHT | UK00AE | 2024-02-03T14:03:27.456Z | 2024-02-10T14:24:45.865Z |
3908887 | 3908887 | 20240201223933_RfMHT | UK00AG | 2024-02-03T14:03:27.456Z | 2024-02-10T14:24:45.865Z |
3908888 | 3908888 | 20240201223933_RfMHT | UK00AN | 2024-02-03T14:03:27.456Z | 2024-02-10T14:24:45.865Z |
3908889 | 3908889 | 20240201223933_RfMHT | UK00BH | 2024-02-03T14:03:27.456Z | 2024-02-10T14:24:45.865Z |
3908877 | 3908877 | 20240201223933_RfMHT | UK002F | 2024-02-03T14:03:27.442Z | 2024-02-10T14:24:45.865Z |
3908878 | 3908878 | 20240201223933_RfMHT | UK0041 | 2024-02-03T14:03:27.442Z | 2024-02-10T14:24:45.865Z |
3908879 | 3908879 | 20240201223933_RfMHT | UK004H | 2024-02-03T14:03:27.442Z | 2024-02-10T14:24:45.865Z |
3908880 | 3908880 | 20240201223933_RfMHT | UK006D | 2024-02-03T14:03:27.442Z | 2024-02-10T14:24:45.865Z |
3908881 | 3908881 | 20240201223933_RfMHT | UK007C | 2024-02-03T14:03:27.442Z | 2024-02-10T14:24:45.865Z |
3908876 | 3908876 | 20240201223933_RfMHT | UK000S | 2024-02-03T14:03:27.427Z | 2024-02-10T14:24:45.865Z |
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);