participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
9 rows where meteor_unique_trajectory_identifier = "20240731022455_OZY5t" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
4762669 | 4762669 | 20240731022455_OZY5t | IE0004 | 2024-08-06T12:02:56.987Z | 2024-08-10T12:17:52.825Z |
4762670 | 4762670 | 20240731022455_OZY5t | UK001S | 2024-08-06T12:02:56.987Z | 2024-08-10T12:17:52.825Z |
4762671 | 4762671 | 20240731022455_OZY5t | UK0067 | 2024-08-06T12:02:56.987Z | 2024-08-10T12:17:52.825Z |
4762672 | 4762672 | 20240731022455_OZY5t | UK007P | 2024-08-06T12:02:56.987Z | 2024-08-10T12:17:52.825Z |
4762673 | 4762673 | 20240731022455_OZY5t | UK0089 | 2024-08-06T12:02:56.987Z | 2024-08-10T12:17:52.825Z |
4762674 | 4762674 | 20240731022455_OZY5t | UK009S | 2024-08-06T12:02:56.987Z | 2024-08-10T12:17:52.825Z |
4762675 | 4762675 | 20240731022455_OZY5t | UK00BA | 2024-08-06T12:02:56.987Z | 2024-08-10T12:17:52.825Z |
4762676 | 4762676 | 20240731022455_OZY5t | UK00BD | 2024-08-06T12:02:56.987Z | 2024-08-10T12:17:52.825Z |
4762677 | 4762677 | 20240731022455_OZY5t | UK00BK | 2024-08-06T12:02:56.987Z | 2024-08-10T12:17:52.825Z |
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);