participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20240227011831_ziC1B" 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 |
---|---|---|---|---|---|
4005071 | 4005071 | 20240227011831_ziC1B | UK001K | 2024-02-28T14:03:31.025Z | 2024-03-06T14:19:41.720Z |
4005072 | 4005072 | 20240227011831_ziC1B | UK0024 | 2024-02-28T14:03:31.025Z | 2024-03-06T14:19:41.720Z |
4005073 | 4005073 | 20240227011831_ziC1B | UK003F | 2024-02-28T14:03:31.025Z | 2024-03-06T14:19:41.720Z |
4005074 | 4005074 | 20240227011831_ziC1B | UK005S | 2024-02-28T14:03:31.025Z | 2024-03-06T14:19:41.720Z |
4005075 | 4005075 | 20240227011831_ziC1B | UK0060 | 2024-02-28T14:03:31.025Z | 2024-03-06T14:19:41.720Z |
4005076 | 4005076 | 20240227011831_ziC1B | UK007Q | 2024-02-28T14:03:31.025Z | 2024-03-06T14:19:41.720Z |
4005077 | 4005077 | 20240227011831_ziC1B | UK008E | 2024-02-28T14:03:31.025Z | 2024-03-06T14:19:41.720Z |
4005078 | 4005078 | 20240227011831_ziC1B | UK00AP | 2024-02-28T14:03:31.025Z | 2024-03-06T14:19:41.720Z |
4005079 | 4005079 | 20240227011831_ziC1B | UK00AU | 2024-02-28T14:03:31.025Z | 2024-03-06T14:19:41.720Z |
4005080 | 4005080 | 20240227011831_ziC1B | UK00BB | 2024-02-28T14:03:31.025Z | 2024-03-06T14:19:41.720Z |
4005081 | 4005081 | 20240227011831_ziC1B | UK00BK | 2024-02-28T14:03:31.025Z | 2024-03-06T14:19:41.720Z |
4005082 | 4005082 | 20240227011831_ziC1B | UK00BW | 2024-02-28T14:03:31.025Z | 2024-03-06T14:19:41.720Z |
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);