participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20240807024650_YAP9n" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
4883693 | 4883693 | 20240807024650_YAP9n | UK000S | 2024-08-20T12:15:08.947Z | 2024-08-27T12:15:59.839Z |
4883694 | 4883694 | 20240807024650_YAP9n | UK0031 | 2024-08-20T12:15:08.947Z | 2024-08-27T12:15:59.839Z |
4883695 | 4883695 | 20240807024650_YAP9n | UK003U | 2024-08-20T12:15:08.947Z | 2024-08-27T12:15:59.839Z |
4883696 | 4883696 | 20240807024650_YAP9n | UK004D | 2024-08-20T12:15:08.947Z | 2024-08-27T12:15:59.839Z |
4883697 | 4883697 | 20240807024650_YAP9n | UK004G | 2024-08-20T12:15:08.947Z | 2024-08-27T12:15:59.839Z |
4883698 | 4883698 | 20240807024650_YAP9n | UK0050 | 2024-08-20T12:15:08.947Z | 2024-08-27T12:15:59.839Z |
4883699 | 4883699 | 20240807024650_YAP9n | UK0067 | 2024-08-20T12:15:08.947Z | 2024-08-27T12:15:59.839Z |
4883700 | 4883700 | 20240807024650_YAP9n | UK007P | 2024-08-20T12:15:08.947Z | 2024-08-27T12:15:59.839Z |
4883701 | 4883701 | 20240807024650_YAP9n | UK0084 | 2024-08-20T12:15:08.947Z | 2024-08-27T12:15:59.839Z |
4883702 | 4883702 | 20240807024650_YAP9n | UK009K | 2024-08-20T12:15:08.947Z | 2024-08-27T12:15:59.839Z |
4883703 | 4883703 | 20240807024650_YAP9n | UK00B0 | 2024-08-20T12:15:08.947Z | 2024-08-27T12:15:59.839Z |
4883704 | 4883704 | 20240807024650_YAP9n | UK00B2 | 2024-08-20T12:15:08.947Z | 2024-08-27T12:15:59.839Z |
4883692 | 4883692 | 20240807024650_YAP9n | UK0006 | 2024-08-20T12:15:08.946Z | 2024-08-27T12:15:59.839Z |
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);