participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
15 rows where meteor_unique_trajectory_identifier = "20240407025558_zstgU" 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 |
---|---|---|---|---|---|
4154802 | 4154802 | 20240407025558_zstgU | UK000Y | 2024-04-08T12:07:11.701Z | 2024-04-15T12:19:17.183Z |
4154803 | 4154803 | 20240407025558_zstgU | UK001L | 2024-04-08T12:07:11.701Z | 2024-04-15T12:19:17.183Z |
4154804 | 4154804 | 20240407025558_zstgU | UK001S | 2024-04-08T12:07:11.701Z | 2024-04-15T12:19:17.183Z |
4154805 | 4154805 | 20240407025558_zstgU | UK0026 | 2024-04-08T12:07:11.701Z | 2024-04-15T12:19:17.183Z |
4154806 | 4154806 | 20240407025558_zstgU | UK0070 | 2024-04-08T12:07:11.701Z | 2024-04-15T12:19:17.183Z |
4154807 | 4154807 | 20240407025558_zstgU | UK007P | 2024-04-08T12:07:11.701Z | 2024-04-15T12:19:17.183Z |
4154808 | 4154808 | 20240407025558_zstgU | UK0083 | 2024-04-08T12:07:11.701Z | 2024-04-15T12:19:17.183Z |
4154809 | 4154809 | 20240407025558_zstgU | UK008J | 2024-04-08T12:07:11.701Z | 2024-04-15T12:19:17.183Z |
4154810 | 4154810 | 20240407025558_zstgU | UK008U | 2024-04-08T12:07:11.701Z | 2024-04-15T12:19:17.183Z |
4154811 | 4154811 | 20240407025558_zstgU | UK009P | 2024-04-08T12:07:11.701Z | 2024-04-15T12:19:17.183Z |
4154812 | 4154812 | 20240407025558_zstgU | UK00AT | 2024-04-08T12:07:11.701Z | 2024-04-15T12:19:17.183Z |
4154813 | 4154813 | 20240407025558_zstgU | UK00B0 | 2024-04-08T12:07:11.701Z | 2024-04-15T12:19:17.183Z |
4154814 | 4154814 | 20240407025558_zstgU | UK00BA | 2024-04-08T12:07:11.701Z | 2024-04-15T12:19:17.183Z |
4154815 | 4154815 | 20240407025558_zstgU | UK00BF | 2024-04-08T12:07:11.701Z | 2024-04-15T12:19:17.183Z |
4154816 | 4154816 | 20240407025558_zstgU | UK00C1 | 2024-04-08T12:07:11.701Z | 2024-04-15T12:19:17.183Z |
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);