participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
8 rows where meteor_unique_trajectory_identifier = "20241022025216_7mmQC" 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 |
---|---|---|---|---|---|
5342893 | 5342893 | 20241022025216_7mmQC | UK002F | 2024-10-23T12:17:27.865Z | 2024-10-30T12:26:49.033Z |
5342894 | 5342894 | 20241022025216_7mmQC | UK003B | 2024-10-23T12:17:27.865Z | 2024-10-30T12:26:49.033Z |
5342895 | 5342895 | 20241022025216_7mmQC | UK005E | 2024-10-23T12:17:27.865Z | 2024-10-30T12:26:49.033Z |
5342896 | 5342896 | 20241022025216_7mmQC | UK006P | 2024-10-23T12:17:27.865Z | 2024-10-30T12:26:49.033Z |
5342897 | 5342897 | 20241022025216_7mmQC | UK007Y | 2024-10-23T12:17:27.865Z | 2024-10-30T12:26:49.033Z |
5342898 | 5342898 | 20241022025216_7mmQC | UK0087 | 2024-10-23T12:17:27.865Z | 2024-10-30T12:26:49.033Z |
5342899 | 5342899 | 20241022025216_7mmQC | UK009M | 2024-10-23T12:17:27.865Z | 2024-10-30T12:26:49.033Z |
5342900 | 5342900 | 20241022025216_7mmQC | UK00BH | 2024-10-23T12:17:27.865Z | 2024-10-30T12:26:49.033Z |
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);