participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20240910214240_pDM2q" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: updated_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
5069423 | 5069423 | 20240910214240_pDM2q | UK000F | 2024-09-14T12:19:57.717Z | 2024-09-19T12:21:34.926Z |
5069424 | 5069424 | 20240910214240_pDM2q | UK002F | 2024-09-14T12:19:57.717Z | 2024-09-19T12:21:34.926Z |
5069425 | 5069425 | 20240910214240_pDM2q | UK0034 | 2024-09-14T12:19:57.717Z | 2024-09-19T12:21:34.926Z |
5069426 | 5069426 | 20240910214240_pDM2q | UK0041 | 2024-09-14T12:19:57.717Z | 2024-09-19T12:21:34.926Z |
5069427 | 5069427 | 20240910214240_pDM2q | UK0045 | 2024-09-14T12:19:57.717Z | 2024-09-19T12:21:34.926Z |
5069428 | 5069428 | 20240910214240_pDM2q | UK006B | 2024-09-14T12:19:57.717Z | 2024-09-19T12:21:34.926Z |
5069429 | 5069429 | 20240910214240_pDM2q | UK006D | 2024-09-14T12:19:57.717Z | 2024-09-19T12:21:34.926Z |
5069430 | 5069430 | 20240910214240_pDM2q | UK006U | 2024-09-14T12:19:57.717Z | 2024-09-19T12:21:34.926Z |
5069431 | 5069431 | 20240910214240_pDM2q | UK00B1 | 2024-09-14T12:19:57.717Z | 2024-09-19T12:21:34.926Z |
5069432 | 5069432 | 20240910214240_pDM2q | UK00BC | 2024-09-14T12:19:57.717Z | 2024-09-19T12:21:34.926Z |
5069433 | 5069433 | 20240910214240_pDM2q | UK00BH | 2024-09-14T12:19:57.717Z | 2024-09-19T12:21:34.927Z |
5069434 | 5069434 | 20240910214240_pDM2q | UK00BJ | 2024-09-14T12:19:57.717Z | 2024-09-19T12:21:34.927Z |
5069435 | 5069435 | 20240910214240_pDM2q | UK00CA | 2024-09-14T12:19:57.717Z | 2024-09-19T12:21:34.927Z |
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);