participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
10 rows where meteor_unique_trajectory_identifier = "20240811010714_Y5aRS" 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 |
---|---|---|---|---|---|
4946819 | 4946819 | 20240811010714_Y5aRS | UK00C9 | 2024-09-02T12:14:08.755Z | 2024-09-06T12:26:35.746Z |
4946820 | 4946820 | 20240811010714_Y5aRS | UK00CH | 2024-09-02T12:14:08.755Z | 2024-09-06T12:26:35.746Z |
4946811 | 4946811 | 20240811010714_Y5aRS | IE0004 | 2024-09-02T12:14:08.749Z | 2024-09-06T12:26:35.746Z |
4946812 | 4946812 | 20240811010714_Y5aRS | UK001Q | 2024-09-02T12:14:08.749Z | 2024-09-06T12:26:35.746Z |
4946813 | 4946813 | 20240811010714_Y5aRS | UK003U | 2024-09-02T12:14:08.749Z | 2024-09-06T12:26:35.746Z |
4946814 | 4946814 | 20240811010714_Y5aRS | UK003V | 2024-09-02T12:14:08.749Z | 2024-09-06T12:26:35.746Z |
4946815 | 4946815 | 20240811010714_Y5aRS | UK0042 | 2024-09-02T12:14:08.749Z | 2024-09-06T12:26:35.746Z |
4946816 | 4946816 | 20240811010714_Y5aRS | UK004M | 2024-09-02T12:14:08.749Z | 2024-09-06T12:26:35.746Z |
4946817 | 4946817 | 20240811010714_Y5aRS | UK0090 | 2024-09-02T12:14:08.749Z | 2024-09-06T12:26:35.746Z |
4946818 | 4946818 | 20240811010714_Y5aRS | UK00AJ | 2024-09-02T12:14:08.749Z | 2024-09-06T12:26:35.746Z |
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);