participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
15 rows where meteor_unique_trajectory_identifier = "20240703234613_5kQdn" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
4545069 | 4545069 | 20240703234613_5kQdn | UK006V | 2024-07-05T12:01:29.981Z | 2024-07-12T12:08:52.675Z |
4545070 | 4545070 | 20240703234613_5kQdn | UK0074 | 2024-07-05T12:01:29.981Z | 2024-07-12T12:08:52.675Z |
4545071 | 4545071 | 20240703234613_5kQdn | UK007N | 2024-07-05T12:01:29.981Z | 2024-07-12T12:08:52.675Z |
4545072 | 4545072 | 20240703234613_5kQdn | UK008G | 2024-07-05T12:01:29.981Z | 2024-07-12T12:08:52.675Z |
4545073 | 4545073 | 20240703234613_5kQdn | UK00AQ | 2024-07-05T12:01:29.981Z | 2024-07-12T12:08:52.675Z |
4545059 | 4545059 | 20240703234613_5kQdn | UK000X | 2024-07-05T12:01:29.980Z | 2024-07-12T12:08:52.675Z |
4545060 | 4545060 | 20240703234613_5kQdn | UK001H | 2024-07-05T12:01:29.980Z | 2024-07-12T12:08:52.675Z |
4545061 | 4545061 | 20240703234613_5kQdn | UK001L | 2024-07-05T12:01:29.980Z | 2024-07-12T12:08:52.675Z |
4545062 | 4545062 | 20240703234613_5kQdn | UK002X | 2024-07-05T12:01:29.980Z | 2024-07-12T12:08:52.675Z |
4545063 | 4545063 | 20240703234613_5kQdn | UK002Z | 2024-07-05T12:01:29.980Z | 2024-07-12T12:08:52.675Z |
4545064 | 4545064 | 20240703234613_5kQdn | UK003T | 2024-07-05T12:01:29.980Z | 2024-07-12T12:08:52.675Z |
4545065 | 4545065 | 20240703234613_5kQdn | UK004B | 2024-07-05T12:01:29.980Z | 2024-07-12T12:08:52.675Z |
4545066 | 4545066 | 20240703234613_5kQdn | UK004V | 2024-07-05T12:01:29.980Z | 2024-07-12T12:08:52.675Z |
4545067 | 4545067 | 20240703234613_5kQdn | UK005H | 2024-07-05T12:01:29.980Z | 2024-07-12T12:08:52.675Z |
4545068 | 4545068 | 20240703234613_5kQdn | UK006E | 2024-07-05T12:01:29.980Z | 2024-07-12T12:08:52.675Z |
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);