participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
17 rows where meteor_unique_trajectory_identifier = "20221017223321_BGzI0" 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 |
---|---|---|---|---|---|
1778745 | 1778745 | 20221017223321_BGzI0 | UK000S | 2024-01-05T23:51:11.095Z | 2024-01-05T23:51:11.095Z |
1778746 | 1778746 | 20221017223321_BGzI0 | UK0026 | 2024-01-05T23:51:11.095Z | 2024-01-05T23:51:11.095Z |
1778747 | 1778747 | 20221017223321_BGzI0 | UK002F | 2024-01-05T23:51:11.095Z | 2024-01-05T23:51:11.095Z |
1778748 | 1778748 | 20221017223321_BGzI0 | UK002W | 2024-01-05T23:51:11.095Z | 2024-01-05T23:51:11.095Z |
1778749 | 1778749 | 20221017223321_BGzI0 | UK0035 | 2024-01-05T23:51:11.095Z | 2024-01-05T23:51:11.095Z |
1778750 | 1778750 | 20221017223321_BGzI0 | UK003A | 2024-01-05T23:51:11.095Z | 2024-01-05T23:51:11.095Z |
1778751 | 1778751 | 20221017223321_BGzI0 | UK003G | 2024-01-05T23:51:11.095Z | 2024-01-05T23:51:11.095Z |
1778752 | 1778752 | 20221017223321_BGzI0 | UK003L | 2024-01-05T23:51:11.095Z | 2024-01-05T23:51:11.095Z |
1778753 | 1778753 | 20221017223321_BGzI0 | UK003X | 2024-01-05T23:51:11.095Z | 2024-01-05T23:51:11.095Z |
1778754 | 1778754 | 20221017223321_BGzI0 | UK0041 | 2024-01-05T23:51:11.095Z | 2024-01-05T23:51:11.095Z |
1778755 | 1778755 | 20221017223321_BGzI0 | UK004A | 2024-01-05T23:51:11.095Z | 2024-01-05T23:51:11.095Z |
1778756 | 1778756 | 20221017223321_BGzI0 | UK004P | 2024-01-05T23:51:11.095Z | 2024-01-05T23:51:11.095Z |
1778757 | 1778757 | 20221017223321_BGzI0 | UK005M | 2024-01-05T23:51:11.095Z | 2024-01-05T23:51:11.095Z |
1778758 | 1778758 | 20221017223321_BGzI0 | UK0062 | 2024-01-05T23:51:11.095Z | 2024-01-05T23:51:11.095Z |
1778759 | 1778759 | 20221017223321_BGzI0 | UK006B | 2024-01-05T23:51:11.095Z | 2024-01-05T23:51:11.095Z |
1778760 | 1778760 | 20221017223321_BGzI0 | UK006L | 2024-01-05T23:51:11.095Z | 2024-01-05T23:51:11.095Z |
1778761 | 1778761 | 20221017223321_BGzI0 | UK007B | 2024-01-05T23:51:11.095Z | 2024-01-05T23:51:11.095Z |
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);