participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20240520224825_eYqSY" 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 |
---|---|---|---|---|---|
4372821 | 4372821 | 20240520224825_eYqSY | UK00C2 | 2024-05-27T12:05:16.382Z | 2024-05-29T12:13:27.746Z |
4372817 | 4372817 | 20240520224825_eYqSY | UK006Z | 2024-05-27T12:05:16.381Z | 2024-05-29T12:13:27.746Z |
4372818 | 4372818 | 20240520224825_eYqSY | UK007N | 2024-05-27T12:05:16.381Z | 2024-05-29T12:13:27.746Z |
4372819 | 4372819 | 20240520224825_eYqSY | UK00A3 | 2024-05-27T12:05:16.381Z | 2024-05-29T12:13:27.746Z |
4372820 | 4372820 | 20240520224825_eYqSY | UK00AL | 2024-05-27T12:05:16.381Z | 2024-05-29T12:13:27.746Z |
4372816 | 4372816 | 20240520224825_eYqSY | UK006A | 2024-05-27T12:05:16.354Z | 2024-05-29T12:13:27.746Z |
4372814 | 4372814 | 20240520224825_eYqSY | UK003T | 2024-05-27T12:05:16.343Z | 2024-05-29T12:13:27.746Z |
4372815 | 4372815 | 20240520224825_eYqSY | UK003X | 2024-05-27T12:05:16.343Z | 2024-05-29T12:13:27.746Z |
4372813 | 4372813 | 20240520224825_eYqSY | UK003A | 2024-05-27T12:05:16.318Z | 2024-05-29T12:13:27.746Z |
4372812 | 4372812 | 20240520224825_eYqSY | UK002F | 2024-05-27T12:05:16.317Z | 2024-05-29T12:13:27.746Z |
4372811 | 4372811 | 20240520224825_eYqSY | UK001L | 2024-05-27T12:05:16.309Z | 2024-05-29T12:13:27.746Z |
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);