participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20241121230150_MjxEG" 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 |
---|---|---|---|---|---|
5579607 | 5579607 | 20241121230150_MjxEG | UK000T | 2024-11-23T14:18:38.334Z | 2024-11-25T14:20:25.944Z |
5579608 | 5579608 | 20241121230150_MjxEG | UK001K | 2024-11-23T14:18:38.334Z | 2024-11-25T14:20:25.944Z |
5579609 | 5579609 | 20241121230150_MjxEG | UK0024 | 2024-11-23T14:18:38.334Z | 2024-11-25T14:20:25.944Z |
5579610 | 5579610 | 20241121230150_MjxEG | UK0025 | 2024-11-23T14:18:38.334Z | 2024-11-25T14:20:25.944Z |
5579611 | 5579611 | 20241121230150_MjxEG | UK002J | 2024-11-23T14:18:38.334Z | 2024-11-25T14:20:25.944Z |
5579612 | 5579612 | 20241121230150_MjxEG | UK003C | 2024-11-23T14:18:38.334Z | 2024-11-25T14:20:25.945Z |
5579613 | 5579613 | 20241121230150_MjxEG | UK0051 | 2024-11-23T14:18:38.334Z | 2024-11-25T14:20:25.945Z |
5579614 | 5579614 | 20241121230150_MjxEG | UK006S | 2024-11-23T14:18:38.334Z | 2024-11-25T14:20:25.945Z |
5579615 | 5579615 | 20241121230150_MjxEG | UK007Q | 2024-11-23T14:18:38.334Z | 2024-11-25T14:20:25.945Z |
5579616 | 5579616 | 20241121230150_MjxEG | UK009W | 2024-11-23T14:18:38.334Z | 2024-11-25T14:20:25.945Z |
5579617 | 5579617 | 20241121230150_MjxEG | UK00BK | 2024-11-23T14:18:38.334Z | 2024-11-25T14:20:25.945Z |
5579606 | 5579606 | 20241121230150_MjxEG | UK0009 | 2024-11-23T14:18:38.333Z | 2024-11-25T14:20:25.944Z |
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);