participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20240914221653_IlpIA" 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 |
---|---|---|---|---|---|
5112119 | 5112119 | 20240914221653_IlpIA | UK009D | 2024-09-18T12:02:48.816Z | 2024-09-23T12:16:02.423Z |
5112120 | 5112120 | 20240914221653_IlpIA | UK009K | 2024-09-18T12:02:48.816Z | 2024-09-23T12:16:02.423Z |
5112121 | 5112121 | 20240914221653_IlpIA | UK00B0 | 2024-09-18T12:02:48.816Z | 2024-09-23T12:16:02.423Z |
5112122 | 5112122 | 20240914221653_IlpIA | UK00BK | 2024-09-18T12:02:48.816Z | 2024-09-23T12:16:02.423Z |
5112123 | 5112123 | 20240914221653_IlpIA | UK00BL | 2024-09-18T12:02:48.816Z | 2024-09-23T12:16:02.423Z |
5112124 | 5112124 | 20240914221653_IlpIA | UK00BW | 2024-09-18T12:02:48.816Z | 2024-09-23T12:16:02.423Z |
5112125 | 5112125 | 20240914221653_IlpIA | UK00CH | 2024-09-18T12:02:48.816Z | 2024-09-23T12:16:02.423Z |
5112115 | 5112115 | 20240914221653_IlpIA | UK001Z | 2024-09-18T12:02:48.815Z | 2024-09-23T12:16:02.423Z |
5112116 | 5112116 | 20240914221653_IlpIA | UK003U | 2024-09-18T12:02:48.815Z | 2024-09-23T12:16:02.423Z |
5112117 | 5112117 | 20240914221653_IlpIA | UK004M | 2024-09-18T12:02:48.815Z | 2024-09-23T12:16:02.423Z |
5112118 | 5112118 | 20240914221653_IlpIA | UK007P | 2024-09-18T12:02:48.815Z | 2024-09-23T12:16:02.423Z |
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);