participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
15 rows where meteor_unique_trajectory_identifier = "20240119031153_YARJz" 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 |
---|---|---|---|---|---|
3863852 | 3863852 | 20240119031153_YARJz | UK001L | 2024-01-22T14:04:04.524Z | 2024-01-27T14:19:38.432Z |
3863853 | 3863853 | 20240119031153_YARJz | UK001N | 2024-01-22T14:04:04.524Z | 2024-01-27T14:19:38.432Z |
3863854 | 3863854 | 20240119031153_YARJz | UK002Z | 2024-01-22T14:04:04.524Z | 2024-01-27T14:19:38.432Z |
3863855 | 3863855 | 20240119031153_YARJz | UK0042 | 2024-01-22T14:04:04.524Z | 2024-01-27T14:19:38.432Z |
3863856 | 3863856 | 20240119031153_YARJz | UK004N | 2024-01-22T14:04:04.524Z | 2024-01-27T14:19:38.432Z |
3863857 | 3863857 | 20240119031153_YARJz | UK0050 | 2024-01-22T14:04:04.524Z | 2024-01-27T14:19:38.432Z |
3863858 | 3863858 | 20240119031153_YARJz | UK006A | 2024-01-22T14:04:04.524Z | 2024-01-27T14:19:38.432Z |
3863859 | 3863859 | 20240119031153_YARJz | UK006T | 2024-01-22T14:04:04.524Z | 2024-01-27T14:19:38.432Z |
3863860 | 3863860 | 20240119031153_YARJz | UK0072 | 2024-01-22T14:04:04.524Z | 2024-01-27T14:19:38.432Z |
3863861 | 3863861 | 20240119031153_YARJz | UK0083 | 2024-01-22T14:04:04.524Z | 2024-01-27T14:19:38.432Z |
3863862 | 3863862 | 20240119031153_YARJz | UK008S | 2024-01-22T14:04:04.524Z | 2024-01-27T14:19:38.433Z |
3863863 | 3863863 | 20240119031153_YARJz | UK0090 | 2024-01-22T14:04:04.524Z | 2024-01-27T14:19:38.433Z |
3863864 | 3863864 | 20240119031153_YARJz | UK0098 | 2024-01-22T14:04:04.524Z | 2024-01-27T14:19:38.433Z |
3863865 | 3863865 | 20240119031153_YARJz | UK009P | 2024-01-22T14:04:04.524Z | 2024-01-27T14:19:38.433Z |
3863866 | 3863866 | 20240119031153_YARJz | UK00AA | 2024-01-22T14:04:04.524Z | 2024-01-27T14:19:38.433Z |
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);