participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20241121214222_kloUP" 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 |
---|---|---|---|---|---|
5579058 | 5579058 | 20241121214222_kloUP | BE000H | 2024-11-23T14:17:47.602Z | 2024-11-25T14:20:21.802Z |
5579059 | 5579059 | 20241121214222_kloUP | UK000F | 2024-11-23T14:17:47.602Z | 2024-11-25T14:20:21.802Z |
5579060 | 5579060 | 20241121214222_kloUP | UK0022 | 2024-11-23T14:17:47.602Z | 2024-11-25T14:20:21.802Z |
5579061 | 5579061 | 20241121214222_kloUP | UK003N | 2024-11-23T14:17:47.602Z | 2024-11-25T14:20:21.802Z |
5579062 | 5579062 | 20241121214222_kloUP | UK0045 | 2024-11-23T14:17:47.602Z | 2024-11-25T14:20:21.802Z |
5579063 | 5579063 | 20241121214222_kloUP | UK004F | 2024-11-23T14:17:47.602Z | 2024-11-25T14:20:21.802Z |
5579064 | 5579064 | 20241121214222_kloUP | UK005P | 2024-11-23T14:17:47.602Z | 2024-11-25T14:20:21.802Z |
5579065 | 5579065 | 20241121214222_kloUP | UK005U | 2024-11-23T14:17:47.602Z | 2024-11-25T14:20:21.802Z |
5579066 | 5579066 | 20241121214222_kloUP | UK0079 | 2024-11-23T14:17:47.602Z | 2024-11-25T14:20:21.802Z |
5579067 | 5579067 | 20241121214222_kloUP | UK007H | 2024-11-23T14:17:47.602Z | 2024-11-25T14:20:21.802Z |
5579068 | 5579068 | 20241121214222_kloUP | UK008T | 2024-11-23T14:17:47.602Z | 2024-11-25T14:20:21.802Z |
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);