participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
10 rows where meteor_unique_trajectory_identifier = "20221011031026_FiK7C" 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 |
---|---|---|---|---|---|
1759167 | 1759167 | 20221011031026_FiK7C | UK000J | 2024-01-05T23:50:58.889Z | 2024-01-05T23:50:58.889Z |
1759168 | 1759168 | 20221011031026_FiK7C | UK001L | 2024-01-05T23:50:58.889Z | 2024-01-05T23:50:58.889Z |
1759169 | 1759169 | 20221011031026_FiK7C | UK002F | 2024-01-05T23:50:58.889Z | 2024-01-05T23:50:58.889Z |
1759170 | 1759170 | 20221011031026_FiK7C | UK0031 | 2024-01-05T23:50:58.889Z | 2024-01-05T23:50:58.889Z |
1759171 | 1759171 | 20221011031026_FiK7C | UK003G | 2024-01-05T23:50:58.889Z | 2024-01-05T23:50:58.889Z |
1759172 | 1759172 | 20221011031026_FiK7C | UK003X | 2024-01-05T23:50:58.889Z | 2024-01-05T23:50:58.889Z |
1759173 | 1759173 | 20221011031026_FiK7C | UK004A | 2024-01-05T23:50:58.889Z | 2024-01-05T23:50:58.889Z |
1759174 | 1759174 | 20221011031026_FiK7C | UK004P | 2024-01-05T23:50:58.889Z | 2024-01-05T23:50:58.889Z |
1759175 | 1759175 | 20221011031026_FiK7C | UK006A | 2024-01-05T23:50:58.889Z | 2024-01-05T23:50:58.889Z |
1759176 | 1759176 | 20221011031026_FiK7C | UK007A | 2024-01-05T23:50:58.889Z | 2024-01-05T23:50:58.889Z |
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);