participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20240118211926_7vLo7" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, updated_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
3860737 | 3860737 | 20240118211926_7vLo7 | UK003Y | 2024-01-21T14:18:40.074Z | 2024-01-26T14:22:57.404Z |
3860738 | 3860738 | 20240118211926_7vLo7 | UK0042 | 2024-01-21T14:18:40.074Z | 2024-01-26T14:22:57.404Z |
3860739 | 3860739 | 20240118211926_7vLo7 | UK004M | 2024-01-21T14:18:40.074Z | 2024-01-26T14:22:57.404Z |
3860740 | 3860740 | 20240118211926_7vLo7 | UK008J | 2024-01-21T14:18:40.074Z | 2024-01-26T14:22:57.404Z |
3860741 | 3860741 | 20240118211926_7vLo7 | UK008U | 2024-01-21T14:18:40.074Z | 2024-01-26T14:22:57.404Z |
3860742 | 3860742 | 20240118211926_7vLo7 | UK0090 | 2024-01-21T14:18:40.074Z | 2024-01-26T14:22:57.404Z |
3860743 | 3860743 | 20240118211926_7vLo7 | UK009D | 2024-01-21T14:18:40.074Z | 2024-01-26T14:22:57.404Z |
3860744 | 3860744 | 20240118211926_7vLo7 | UK009P | 2024-01-21T14:18:40.074Z | 2024-01-26T14:22:57.404Z |
3860745 | 3860745 | 20240118211926_7vLo7 | UK00AJ | 2024-01-21T14:18:40.074Z | 2024-01-26T14:22:57.404Z |
3860746 | 3860746 | 20240118211926_7vLo7 | UK00B0 | 2024-01-21T14:18:40.074Z | 2024-01-26T14:22:57.404Z |
3860735 | 3860735 | 20240118211926_7vLo7 | UK001N | 2024-01-21T14:18:40.073Z | 2024-01-26T14:22:57.403Z |
3860736 | 3860736 | 20240118211926_7vLo7 | UK002V | 2024-01-21T14:18:40.073Z | 2024-01-26T14:22:57.404Z |
3860733 | 3860733 | 20240118211926_7vLo7 | IE0004 | 2024-01-21T14:18:40.065Z | 2024-01-26T14:22:57.403Z |
3860734 | 3860734 | 20240118211926_7vLo7 | UK001L | 2024-01-21T14:18:40.065Z | 2024-01-26T14:22:57.403Z |
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);