participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
23 rows where meteor_unique_trajectory_identifier = "20240417012133_3zVVr" 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 |
---|---|---|---|---|---|
4201093 | 4201093 | 20240417012133_3zVVr | UK00C1 | 2024-04-18T12:02:45.812Z | 2024-04-25T12:21:13.211Z |
4201086 | 4201086 | 20240417012133_3zVVr | UK009K | 2024-04-18T12:02:45.811Z | 2024-04-25T12:21:13.211Z |
4201087 | 4201087 | 20240417012133_3zVVr | UK009P | 2024-04-18T12:02:45.811Z | 2024-04-25T12:21:13.211Z |
4201088 | 4201088 | 20240417012133_3zVVr | UK009S | 2024-04-18T12:02:45.811Z | 2024-04-25T12:21:13.211Z |
4201089 | 4201089 | 20240417012133_3zVVr | UK00AE | 2024-04-18T12:02:45.811Z | 2024-04-25T12:21:13.211Z |
4201090 | 4201090 | 20240417012133_3zVVr | UK00B0 | 2024-04-18T12:02:45.811Z | 2024-04-25T12:21:13.211Z |
4201091 | 4201091 | 20240417012133_3zVVr | UK00BD | 2024-04-18T12:02:45.811Z | 2024-04-25T12:21:13.211Z |
4201092 | 4201092 | 20240417012133_3zVVr | UK00BF | 2024-04-18T12:02:45.811Z | 2024-04-25T12:21:13.211Z |
4201080 | 4201080 | 20240417012133_3zVVr | UK0072 | 2024-04-18T12:02:45.791Z | 2024-04-25T12:21:13.211Z |
4201081 | 4201081 | 20240417012133_3zVVr | UK007A | 2024-04-18T12:02:45.791Z | 2024-04-25T12:21:13.211Z |
4201082 | 4201082 | 20240417012133_3zVVr | UK007M | 2024-04-18T12:02:45.791Z | 2024-04-25T12:21:13.211Z |
4201083 | 4201083 | 20240417012133_3zVVr | UK0083 | 2024-04-18T12:02:45.791Z | 2024-04-25T12:21:13.211Z |
4201084 | 4201084 | 20240417012133_3zVVr | UK008J | 2024-04-18T12:02:45.791Z | 2024-04-25T12:21:13.211Z |
4201085 | 4201085 | 20240417012133_3zVVr | UK0090 | 2024-04-18T12:02:45.791Z | 2024-04-25T12:21:13.211Z |
4201079 | 4201079 | 20240417012133_3zVVr | UK005V | 2024-04-18T12:02:45.778Z | 2024-04-25T12:21:13.211Z |
4201071 | 4201071 | 20240417012133_3zVVr | UK000Y | 2024-04-18T12:02:45.766Z | 2024-04-25T12:21:13.210Z |
4201072 | 4201072 | 20240417012133_3zVVr | UK001L | 2024-04-18T12:02:45.766Z | 2024-04-25T12:21:13.210Z |
4201073 | 4201073 | 20240417012133_3zVVr | UK001Z | 2024-04-18T12:02:45.766Z | 2024-04-25T12:21:13.210Z |
4201074 | 4201074 | 20240417012133_3zVVr | UK0027 | 2024-04-18T12:02:45.766Z | 2024-04-25T12:21:13.210Z |
4201075 | 4201075 | 20240417012133_3zVVr | UK0030 | 2024-04-18T12:02:45.766Z | 2024-04-25T12:21:13.210Z |
4201076 | 4201076 | 20240417012133_3zVVr | UK0031 | 2024-04-18T12:02:45.766Z | 2024-04-25T12:21:13.210Z |
4201077 | 4201077 | 20240417012133_3zVVr | UK003U | 2024-04-18T12:02:45.766Z | 2024-04-25T12:21:13.211Z |
4201078 | 4201078 | 20240417012133_3zVVr | UK004M | 2024-04-18T12:02:45.766Z | 2024-04-25T12:21:13.211Z |
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);