participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
20 rows where meteor_unique_trajectory_identifier = "20231111045559_cPpe3" 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 |
---|---|---|---|---|---|
3372168 | 3372168 | 20231111045559_cPpe3 | BE0009 | 2024-01-06T00:04:15.464Z | 2024-01-06T00:04:15.464Z |
3372169 | 3372169 | 20231111045559_cPpe3 | BE000B | 2024-01-06T00:04:15.464Z | 2024-01-06T00:04:15.464Z |
3372170 | 3372170 | 20231111045559_cPpe3 | BE000G | 2024-01-06T00:04:15.464Z | 2024-01-06T00:04:15.464Z |
3372171 | 3372171 | 20231111045559_cPpe3 | FR000F | 2024-01-06T00:04:15.464Z | 2024-01-06T00:04:15.464Z |
3372172 | 3372172 | 20231111045559_cPpe3 | FR000X | 2024-01-06T00:04:15.464Z | 2024-01-06T00:04:15.464Z |
3372173 | 3372173 | 20231111045559_cPpe3 | UK0004 | 2024-01-06T00:04:15.464Z | 2024-01-06T00:04:15.464Z |
3372174 | 3372174 | 20231111045559_cPpe3 | UK002C | 2024-01-06T00:04:15.464Z | 2024-01-06T00:04:15.464Z |
3372175 | 3372175 | 20231111045559_cPpe3 | UK002F | 2024-01-06T00:04:15.464Z | 2024-01-06T00:04:15.464Z |
3372176 | 3372176 | 20231111045559_cPpe3 | UK0034 | 2024-01-06T00:04:15.464Z | 2024-01-06T00:04:15.464Z |
3372177 | 3372177 | 20231111045559_cPpe3 | UK003W | 2024-01-06T00:04:15.464Z | 2024-01-06T00:04:15.464Z |
3372178 | 3372178 | 20231111045559_cPpe3 | UK0045 | 2024-01-06T00:04:15.464Z | 2024-01-06T00:04:15.464Z |
3372179 | 3372179 | 20231111045559_cPpe3 | UK004C | 2024-01-06T00:04:15.464Z | 2024-01-06T00:04:15.464Z |
3372180 | 3372180 | 20231111045559_cPpe3 | UK004E | 2024-01-06T00:04:15.464Z | 2024-01-06T00:04:15.464Z |
3372181 | 3372181 | 20231111045559_cPpe3 | UK0062 | 2024-01-06T00:04:15.464Z | 2024-01-06T00:04:15.464Z |
3372182 | 3372182 | 20231111045559_cPpe3 | UK0063 | 2024-01-06T00:04:15.464Z | 2024-01-06T00:04:15.464Z |
3372183 | 3372183 | 20231111045559_cPpe3 | UK006B | 2024-01-06T00:04:15.464Z | 2024-01-06T00:04:15.464Z |
3372184 | 3372184 | 20231111045559_cPpe3 | UK007B | 2024-01-06T00:04:15.464Z | 2024-01-06T00:04:15.464Z |
3372185 | 3372185 | 20231111045559_cPpe3 | UK007C | 2024-01-06T00:04:15.464Z | 2024-01-06T00:04:15.464Z |
3372186 | 3372186 | 20231111045559_cPpe3 | UK007E | 2024-01-06T00:04:15.464Z | 2024-01-06T00:04:15.464Z |
3372187 | 3372187 | 20231111045559_cPpe3 | UK009X | 2024-01-06T00:04:15.464Z | 2024-01-06T00:04:15.464Z |
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);