participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20240302213342_5758w" 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 |
---|---|---|---|---|---|
4019520 | 4019520 | 20240302213342_5758w | UK0060 | 2024-03-04T14:04:25.661Z | 2024-03-11T12:18:31.701Z |
4019521 | 4019521 | 20240302213342_5758w | UK007Q | 2024-03-04T14:04:25.661Z | 2024-03-11T12:18:31.701Z |
4019522 | 4019522 | 20240302213342_5758w | UK008E | 2024-03-04T14:04:25.661Z | 2024-03-11T12:18:31.701Z |
4019523 | 4019523 | 20240302213342_5758w | UK009W | 2024-03-04T14:04:25.661Z | 2024-03-11T12:18:31.701Z |
4019524 | 4019524 | 20240302213342_5758w | UK00A1 | 2024-03-04T14:04:25.661Z | 2024-03-11T12:18:31.701Z |
4019525 | 4019525 | 20240302213342_5758w | UK00AU | 2024-03-04T14:04:25.661Z | 2024-03-11T12:18:31.701Z |
4019526 | 4019526 | 20240302213342_5758w | UK00BK | 2024-03-04T14:04:25.661Z | 2024-03-11T12:18:31.701Z |
4019527 | 4019527 | 20240302213342_5758w | UK00BW | 2024-03-04T14:04:25.661Z | 2024-03-11T12:18:31.701Z |
4019519 | 4019519 | 20240302213342_5758w | UK003F | 2024-03-04T14:04:25.660Z | 2024-03-11T12:18:31.701Z |
4019516 | 4019516 | 20240302213342_5758w | UK000D | 2024-03-04T14:04:25.626Z | 2024-03-11T12:18:31.674Z |
4019517 | 4019517 | 20240302213342_5758w | UK0024 | 2024-03-04T14:04:25.626Z | 2024-03-11T12:18:31.674Z |
4019518 | 4019518 | 20240302213342_5758w | UK003E | 2024-03-04T14:04:25.626Z | 2024-03-11T12:18:31.701Z |
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);