participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
17 rows where meteor_unique_trajectory_identifier = "20240417232827_dPKly" 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 |
---|---|---|---|---|---|
4212368 | 4212368 | 20240417232827_dPKly | UK006Z | 2024-04-19T12:09:45.237Z | 2024-04-26T12:16:30.768Z |
4212369 | 4212369 | 20240417232827_dPKly | UK0088 | 2024-04-19T12:09:45.237Z | 2024-04-26T12:16:30.768Z |
4212370 | 4212370 | 20240417232827_dPKly | UK008G | 2024-04-19T12:09:45.237Z | 2024-04-26T12:16:30.768Z |
4212371 | 4212371 | 20240417232827_dPKly | UK00A3 | 2024-04-19T12:09:45.237Z | 2024-04-26T12:16:30.768Z |
4212372 | 4212372 | 20240417232827_dPKly | UK00C2 | 2024-04-19T12:09:45.237Z | 2024-04-26T12:16:30.768Z |
4212366 | 4212366 | 20240417232827_dPKly | UK006C | 2024-04-19T12:09:45.220Z | 2024-04-26T12:16:30.767Z |
4212367 | 4212367 | 20240417232827_dPKly | UK006V | 2024-04-19T12:09:45.220Z | 2024-04-26T12:16:30.768Z |
4212365 | 4212365 | 20240417232827_dPKly | UK006A | 2024-04-19T12:09:45.197Z | 2024-04-26T12:16:30.767Z |
4212364 | 4212364 | 20240417232827_dPKly | UK004V | 2024-04-19T12:09:45.182Z | 2024-04-26T12:16:30.767Z |
4212356 | 4212356 | 20240417232827_dPKly | UK000Z | 2024-04-19T12:09:45.168Z | 2024-04-26T12:16:30.767Z |
4212357 | 4212357 | 20240417232827_dPKly | UK001L | 2024-04-19T12:09:45.168Z | 2024-04-26T12:16:30.767Z |
4212358 | 4212358 | 20240417232827_dPKly | UK002X | 2024-04-19T12:09:45.168Z | 2024-04-26T12:16:30.767Z |
4212359 | 4212359 | 20240417232827_dPKly | UK002Z | 2024-04-19T12:09:45.168Z | 2024-04-26T12:16:30.767Z |
4212360 | 4212360 | 20240417232827_dPKly | UK003T | 2024-04-19T12:09:45.168Z | 2024-04-26T12:16:30.767Z |
4212361 | 4212361 | 20240417232827_dPKly | UK003X | 2024-04-19T12:09:45.168Z | 2024-04-26T12:16:30.767Z |
4212362 | 4212362 | 20240417232827_dPKly | UK0042 | 2024-04-19T12:09:45.168Z | 2024-04-26T12:16:30.767Z |
4212363 | 4212363 | 20240417232827_dPKly | UK004B | 2024-04-19T12:09:45.168Z | 2024-04-26T12:16:30.767Z |
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);