participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20240409234711_mxheV" 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 |
---|---|---|---|---|---|
4166551 | 4166551 | 20240409234711_mxheV | UK0084 | 2024-04-11T12:05:43.957Z | 2024-04-18T12:21:10.356Z |
4166552 | 4166552 | 20240409234711_mxheV | UK009G | 2024-04-11T12:05:43.957Z | 2024-04-18T12:21:10.356Z |
4166553 | 4166553 | 20240409234711_mxheV | UK009K | 2024-04-11T12:05:43.957Z | 2024-04-18T12:21:10.356Z |
4166554 | 4166554 | 20240409234711_mxheV | UK009V | 2024-04-11T12:05:43.957Z | 2024-04-18T12:21:10.356Z |
4166555 | 4166555 | 20240409234711_mxheV | UK009W | 2024-04-11T12:05:43.957Z | 2024-04-18T12:21:10.356Z |
4166556 | 4166556 | 20240409234711_mxheV | UK00A5 | 2024-04-11T12:05:43.957Z | 2024-04-18T12:21:10.356Z |
4166557 | 4166557 | 20240409234711_mxheV | UK00AG | 2024-04-11T12:05:43.957Z | 2024-04-18T12:21:10.356Z |
4166544 | 4166544 | 20240409234711_mxheV | UK0001 | 2024-04-11T12:05:43.956Z | 2024-04-18T12:21:10.356Z |
4166545 | 4166545 | 20240409234711_mxheV | UK0006 | 2024-04-11T12:05:43.956Z | 2024-04-18T12:21:10.356Z |
4166546 | 4166546 | 20240409234711_mxheV | UK0009 | 2024-04-11T12:05:43.956Z | 2024-04-18T12:21:10.356Z |
4166547 | 4166547 | 20240409234711_mxheV | UK000S | 2024-04-11T12:05:43.956Z | 2024-04-18T12:21:10.356Z |
4166548 | 4166548 | 20240409234711_mxheV | UK002W | 2024-04-11T12:05:43.956Z | 2024-04-18T12:21:10.356Z |
4166549 | 4166549 | 20240409234711_mxheV | UK007L | 2024-04-11T12:05:43.956Z | 2024-04-18T12:21:10.356Z |
4166550 | 4166550 | 20240409234711_mxheV | UK007V | 2024-04-11T12:05:43.956Z | 2024-04-18T12:21:10.356Z |
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);