participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20220814014431_T6XSg" 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 |
---|---|---|---|---|---|
1560563 | 1560563 | 20220814014431_T6XSg | UK000S | 2024-01-05T23:49:06.766Z | 2024-01-05T23:49:06.766Z |
1560564 | 1560564 | 20220814014431_T6XSg | UK001Z | 2024-01-05T23:49:06.766Z | 2024-01-05T23:49:06.766Z |
1560565 | 1560565 | 20220814014431_T6XSg | UK0026 | 2024-01-05T23:49:06.766Z | 2024-01-05T23:49:06.766Z |
1560566 | 1560566 | 20220814014431_T6XSg | UK0035 | 2024-01-05T23:49:06.766Z | 2024-01-05T23:49:06.766Z |
1560567 | 1560567 | 20220814014431_T6XSg | UK003G | 2024-01-05T23:49:06.766Z | 2024-01-05T23:49:06.766Z |
1560568 | 1560568 | 20220814014431_T6XSg | UK003L | 2024-01-05T23:49:06.766Z | 2024-01-05T23:49:06.766Z |
1560569 | 1560569 | 20220814014431_T6XSg | UK003R | 2024-01-05T23:49:06.766Z | 2024-01-05T23:49:06.766Z |
1560570 | 1560570 | 20220814014431_T6XSg | UK003S | 2024-01-05T23:49:06.766Z | 2024-01-05T23:49:06.766Z |
1560571 | 1560571 | 20220814014431_T6XSg | UK003X | 2024-01-05T23:49:06.766Z | 2024-01-05T23:49:06.766Z |
1560572 | 1560572 | 20220814014431_T6XSg | UK004A | 2024-01-05T23:49:06.766Z | 2024-01-05T23:49:06.766Z |
1560573 | 1560573 | 20220814014431_T6XSg | UK004P | 2024-01-05T23:49:06.766Z | 2024-01-05T23:49:06.766Z |
1560574 | 1560574 | 20220814014431_T6XSg | UK0070 | 2024-01-05T23:49:06.766Z | 2024-01-05T23:49:06.766Z |
1560575 | 1560575 | 20220814014431_T6XSg | UK007A | 2024-01-05T23:49:06.766Z | 2024-01-05T23:49:06.766Z |
1560576 | 1560576 | 20220814014431_T6XSg | UK007B | 2024-01-05T23:49:06.766Z | 2024-01-05T23:49:06.766Z |
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);