participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20240220222237_xl6C3" 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 |
---|---|---|---|---|---|
3995067 | 3995067 | 20240220222237_xl6C3 | UK009C | 2024-02-22T14:05:37.889Z | 2024-02-29T14:14:34.772Z |
3995068 | 3995068 | 20240220222237_xl6C3 | UK00AQ | 2024-02-22T14:05:37.889Z | 2024-02-29T14:14:34.772Z |
3995066 | 3995066 | 20240220222237_xl6C3 | UK008G | 2024-02-22T14:05:37.885Z | 2024-02-29T14:14:34.772Z |
3995065 | 3995065 | 20240220222237_xl6C3 | UK0072 | 2024-02-22T14:05:37.883Z | 2024-02-29T14:14:34.772Z |
3995060 | 3995060 | 20240220222237_xl6C3 | UK002Z | 2024-02-22T14:05:37.876Z | 2024-02-29T14:14:34.772Z |
3995061 | 3995061 | 20240220222237_xl6C3 | UK004B | 2024-02-22T14:05:37.876Z | 2024-02-29T14:14:34.772Z |
3995062 | 3995062 | 20240220222237_xl6C3 | UK005R | 2024-02-22T14:05:37.876Z | 2024-02-29T14:14:34.772Z |
3995063 | 3995063 | 20240220222237_xl6C3 | UK006E | 2024-02-22T14:05:37.876Z | 2024-02-29T14:14:34.772Z |
3995064 | 3995064 | 20240220222237_xl6C3 | UK006V | 2024-02-22T14:05:37.876Z | 2024-02-29T14:14:34.772Z |
3995059 | 3995059 | 20240220222237_xl6C3 | UK001H | 2024-02-22T14:05:37.875Z | 2024-02-29T14:14:34.772Z |
3995058 | 3995058 | 20240220222237_xl6C3 | UK000Z | 2024-02-22T14:05:37.845Z | 2024-02-29T14:14:34.772Z |
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);