participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
9 rows where meteor_unique_trajectory_identifier = "20241125054040_XCi9j" 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 |
---|---|---|---|---|---|
5600656 | 5600656 | 20241125054040_XCi9j | UK009S | 2024-11-26T14:02:50.212Z | 2024-11-26T14:02:50.212Z |
5600657 | 5600657 | 20241125054040_XCi9j | UK00AT | 2024-11-26T14:02:50.212Z | 2024-11-26T14:02:50.212Z |
5600658 | 5600658 | 20241125054040_XCi9j | UK00BF | 2024-11-26T14:02:50.212Z | 2024-11-26T14:02:50.212Z |
5600659 | 5600659 | 20241125054040_XCi9j | UK00BL | 2024-11-26T14:02:50.212Z | 2024-11-26T14:02:50.212Z |
5600655 | 5600655 | 20241125054040_XCi9j | UK008J | 2024-11-26T14:02:50.180Z | 2024-11-26T14:02:50.180Z |
5600654 | 5600654 | 20241125054040_XCi9j | UK0083 | 2024-11-26T14:02:50.171Z | 2024-11-26T14:02:50.171Z |
5600652 | 5600652 | 20241125054040_XCi9j | UK007A | 2024-11-26T14:02:50.155Z | 2024-11-26T14:02:50.155Z |
5600653 | 5600653 | 20241125054040_XCi9j | UK007P | 2024-11-26T14:02:50.155Z | 2024-11-26T14:02:50.155Z |
5600651 | 5600651 | 20241125054040_XCi9j | UK0070 | 2024-11-26T14:02:50.128Z | 2024-11-26T14:02:50.128Z |
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);