participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20241122014332_j7p2j" 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 |
---|---|---|---|---|---|
5581164 | 5581164 | 20241122014332_j7p2j | UK0009 | 2024-11-23T14:20:08.284Z | 2024-11-23T14:21:25.517Z |
5581165 | 5581165 | 20241122014332_j7p2j | UK000F | 2024-11-23T14:20:08.284Z | 2024-11-23T14:21:25.517Z |
5581166 | 5581166 | 20241122014332_j7p2j | UK000H | 2024-11-23T14:20:08.284Z | 2024-11-23T14:21:25.517Z |
5581167 | 5581167 | 20241122014332_j7p2j | UK004F | 2024-11-23T14:20:08.284Z | 2024-11-23T14:21:25.517Z |
5581168 | 5581168 | 20241122014332_j7p2j | UK006H | 2024-11-23T14:20:08.284Z | 2024-11-23T14:21:25.517Z |
5581169 | 5581169 | 20241122014332_j7p2j | UK006X | 2024-11-23T14:20:08.284Z | 2024-11-23T14:21:25.517Z |
5581170 | 5581170 | 20241122014332_j7p2j | UK0079 | 2024-11-23T14:20:08.284Z | 2024-11-23T14:21:25.517Z |
5581171 | 5581171 | 20241122014332_j7p2j | UK008C | 2024-11-23T14:20:08.284Z | 2024-11-23T14:21:25.517Z |
5581172 | 5581172 | 20241122014332_j7p2j | UK008T | 2024-11-23T14:20:08.284Z | 2024-11-23T14:21:25.517Z |
5581173 | 5581173 | 20241122014332_j7p2j | UK00AB | 2024-11-23T14:20:08.284Z | 2024-11-23T14:21:25.517Z |
5581174 | 5581174 | 20241122014332_j7p2j | UK00AK | 2024-11-23T14:20:08.284Z | 2024-11-23T14:21:25.517Z |
5581175 | 5581175 | 20241122014332_j7p2j | UK00C7 | 2024-11-23T14:20:08.284Z | 2024-11-23T14:21:25.517Z |
5581176 | 5581176 | 20241122014332_j7p2j | UK00CE | 2024-11-23T14:20:08.284Z | 2024-11-23T14:21:25.517Z |
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);