participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20240719001100_ihtqj" 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 |
---|---|---|---|---|---|
4666827 | 4666827 | 20240719001100_ihtqj | UK003W | 2024-07-20T12:03:04.744Z | 2024-07-27T12:17:07.779Z |
4666828 | 4666828 | 20240719001100_ihtqj | UK005E | 2024-07-20T12:03:04.744Z | 2024-07-27T12:17:07.779Z |
4666829 | 4666829 | 20240719001100_ihtqj | UK005G | 2024-07-20T12:03:04.744Z | 2024-07-27T12:17:07.779Z |
4666830 | 4666830 | 20240719001100_ihtqj | UK006P | 2024-07-20T12:03:04.744Z | 2024-07-27T12:17:07.779Z |
4666831 | 4666831 | 20240719001100_ihtqj | UK007N | 2024-07-20T12:03:04.744Z | 2024-07-27T12:17:07.779Z |
4666832 | 4666832 | 20240719001100_ihtqj | UK008Z | 2024-07-20T12:03:04.744Z | 2024-07-27T12:17:07.779Z |
4666833 | 4666833 | 20240719001100_ihtqj | UK0099 | 2024-07-20T12:03:04.744Z | 2024-07-27T12:17:07.779Z |
4666834 | 4666834 | 20240719001100_ihtqj | UK009M | 2024-07-20T12:03:04.744Z | 2024-07-27T12:17:07.779Z |
4666835 | 4666835 | 20240719001100_ihtqj | UK00A0 | 2024-07-20T12:03:04.744Z | 2024-07-27T12:17:07.779Z |
4666836 | 4666836 | 20240719001100_ihtqj | UK00AL | 2024-07-20T12:03:04.744Z | 2024-07-27T12:17:07.779Z |
4666837 | 4666837 | 20240719001100_ihtqj | UK00AN | 2024-07-20T12:03:04.744Z | 2024-07-27T12:17:07.779Z |
4666838 | 4666838 | 20240719001100_ihtqj | UK00B1 | 2024-07-20T12:03:04.744Z | 2024-07-27T12:17:07.779Z |
4666839 | 4666839 | 20240719001100_ihtqj | UK00BH | 2024-07-20T12:03:04.744Z | 2024-07-27T12:17:07.779Z |
4666840 | 4666840 | 20240719001100_ihtqj | UK00CJ | 2024-07-20T12:03:04.744Z | 2024-07-27T12:17:07.779Z |
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);