participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20240302235801_NZAP1" 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 |
---|---|---|---|---|---|
4019968 | 4019968 | 20240302235801_NZAP1 | UK0006 | 2024-03-04T14:05:15.087Z | 2024-03-11T12:18:34.535Z |
4019969 | 4019969 | 20240302235801_NZAP1 | UK000D | 2024-03-04T14:05:15.087Z | 2024-03-11T12:18:34.535Z |
4019970 | 4019970 | 20240302235801_NZAP1 | UK0024 | 2024-03-04T14:05:15.087Z | 2024-03-11T12:18:34.535Z |
4019971 | 4019971 | 20240302235801_NZAP1 | UK003F | 2024-03-04T14:05:15.087Z | 2024-03-11T12:18:34.535Z |
4019972 | 4019972 | 20240302235801_NZAP1 | UK005S | 2024-03-04T14:05:15.087Z | 2024-03-11T12:18:34.535Z |
4019973 | 4019973 | 20240302235801_NZAP1 | UK007A | 2024-03-04T14:05:15.087Z | 2024-03-11T12:18:34.535Z |
4019974 | 4019974 | 20240302235801_NZAP1 | UK007P | 2024-03-04T14:05:15.087Z | 2024-03-11T12:18:34.535Z |
4019975 | 4019975 | 20240302235801_NZAP1 | UK008W | 2024-03-04T14:05:15.087Z | 2024-03-11T12:18:34.535Z |
4019976 | 4019976 | 20240302235801_NZAP1 | UK009K | 2024-03-04T14:05:15.087Z | 2024-03-11T12:18:34.536Z |
4019977 | 4019977 | 20240302235801_NZAP1 | UK009P | 2024-03-04T14:05:15.087Z | 2024-03-11T12:18:34.536Z |
4019978 | 4019978 | 20240302235801_NZAP1 | UK009S | 2024-03-04T14:05:15.087Z | 2024-03-11T12:18:34.536Z |
4019979 | 4019979 | 20240302235801_NZAP1 | UK009W | 2024-03-04T14:05:15.087Z | 2024-03-11T12:18:34.536Z |
4019980 | 4019980 | 20240302235801_NZAP1 | UK00BK | 2024-03-04T14:05:15.087Z | 2024-03-11T12:18:34.536Z |
4019981 | 4019981 | 20240302235801_NZAP1 | UK00BW | 2024-03-04T14:05:15.087Z | 2024-03-11T12:18:34.536Z |
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);