participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20230809235414_WlEye" 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 |
---|---|---|---|---|---|
2735789 | 2735789 | 20230809235414_WlEye | UK007N | 2024-01-06T00:00:27.644Z | 2024-01-06T00:00:27.644Z |
2735790 | 2735790 | 20230809235414_WlEye | UK0099 | 2024-01-06T00:00:27.644Z | 2024-01-06T00:00:27.644Z |
2735791 | 2735791 | 20230809235414_WlEye | UK009A | 2024-01-06T00:00:27.644Z | 2024-01-06T00:00:27.644Z |
2735792 | 2735792 | 20230809235414_WlEye | UK009E | 2024-01-06T00:00:27.644Z | 2024-01-06T00:00:27.644Z |
2735793 | 2735793 | 20230809235414_WlEye | UK009L | 2024-01-06T00:00:27.644Z | 2024-01-06T00:00:27.644Z |
2735794 | 2735794 | 20230809235414_WlEye | UK00A4 | 2024-01-06T00:00:27.644Z | 2024-01-06T00:00:27.644Z |
2735782 | 2735782 | 20230809235414_WlEye | UK000F | 2024-01-06T00:00:27.643Z | 2024-01-06T00:00:27.643Z |
2735783 | 2735783 | 20230809235414_WlEye | UK001P | 2024-01-06T00:00:27.643Z | 2024-01-06T00:00:27.643Z |
2735784 | 2735784 | 20230809235414_WlEye | UK002F | 2024-01-06T00:00:27.643Z | 2024-01-06T00:00:27.643Z |
2735785 | 2735785 | 20230809235414_WlEye | UK0041 | 2024-01-06T00:00:27.643Z | 2024-01-06T00:00:27.643Z |
2735786 | 2735786 | 20230809235414_WlEye | UK004P | 2024-01-06T00:00:27.643Z | 2024-01-06T00:00:27.643Z |
2735787 | 2735787 | 20230809235414_WlEye | UK0063 | 2024-01-06T00:00:27.643Z | 2024-01-06T00:00:27.643Z |
2735788 | 2735788 | 20230809235414_WlEye | UK006B | 2024-01-06T00:00:27.643Z | 2024-01-06T00:00:27.643Z |
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);