participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
16 rows where meteor_unique_trajectory_identifier = "20231022053006_noYBg" 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 |
---|---|---|---|---|---|
3240223 | 3240223 | 20231022053006_noYBg | UK000S | 2024-01-06T00:03:16.250Z | 2024-01-06T00:03:16.250Z |
3240224 | 3240224 | 20231022053006_noYBg | UK001Y | 2024-01-06T00:03:16.250Z | 2024-01-06T00:03:16.250Z |
3240225 | 3240225 | 20231022053006_noYBg | UK0026 | 2024-01-06T00:03:16.250Z | 2024-01-06T00:03:16.250Z |
3240226 | 3240226 | 20231022053006_noYBg | UK002X | 2024-01-06T00:03:16.250Z | 2024-01-06T00:03:16.250Z |
3240227 | 3240227 | 20231022053006_noYBg | UK0031 | 2024-01-06T00:03:16.250Z | 2024-01-06T00:03:16.250Z |
3240228 | 3240228 | 20231022053006_noYBg | UK0035 | 2024-01-06T00:03:16.250Z | 2024-01-06T00:03:16.250Z |
3240229 | 3240229 | 20231022053006_noYBg | UK004N | 2024-01-06T00:03:16.250Z | 2024-01-06T00:03:16.250Z |
3240230 | 3240230 | 20231022053006_noYBg | UK0052 | 2024-01-06T00:03:16.250Z | 2024-01-06T00:03:16.250Z |
3240231 | 3240231 | 20231022053006_noYBg | UK005M | 2024-01-06T00:03:16.250Z | 2024-01-06T00:03:16.250Z |
3240232 | 3240232 | 20231022053006_noYBg | UK005V | 2024-01-06T00:03:16.250Z | 2024-01-06T00:03:16.250Z |
3240233 | 3240233 | 20231022053006_noYBg | UK009E | 2024-01-06T00:03:16.250Z | 2024-01-06T00:03:16.250Z |
3240234 | 3240234 | 20231022053006_noYBg | UK009S | 2024-01-06T00:03:16.250Z | 2024-01-06T00:03:16.250Z |
3240235 | 3240235 | 20231022053006_noYBg | UK00A4 | 2024-01-06T00:03:16.250Z | 2024-01-06T00:03:16.250Z |
3240236 | 3240236 | 20231022053006_noYBg | UK00AG | 2024-01-06T00:03:16.250Z | 2024-01-06T00:03:16.250Z |
3240237 | 3240237 | 20231022053006_noYBg | UK00AT | 2024-01-06T00:03:16.250Z | 2024-01-06T00:03:16.250Z |
3240238 | 3240238 | 20231022053006_noYBg | UK00B2 | 2024-01-06T00:03:16.250Z | 2024-01-06T00:03:16.250Z |
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);