participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20240710232422_bCW2D" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, updated_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
4619094 | 4619094 | 20240710232422_bCW2D | UK001Z | 2024-07-13T12:08:23.488Z | 2024-07-19T12:13:40.326Z |
4619095 | 4619095 | 20240710232422_bCW2D | UK007A | 2024-07-13T12:08:23.488Z | 2024-07-19T12:13:40.327Z |
4619096 | 4619096 | 20240710232422_bCW2D | UK007P | 2024-07-13T12:08:23.488Z | 2024-07-19T12:13:40.327Z |
4619097 | 4619097 | 20240710232422_bCW2D | UK008B | 2024-07-13T12:08:23.488Z | 2024-07-19T12:13:40.327Z |
4619098 | 4619098 | 20240710232422_bCW2D | UK008K | 2024-07-13T12:08:23.488Z | 2024-07-19T12:13:40.327Z |
4619099 | 4619099 | 20240710232422_bCW2D | UK008V | 2024-07-13T12:08:23.488Z | 2024-07-19T12:13:40.327Z |
4619100 | 4619100 | 20240710232422_bCW2D | UK009D | 2024-07-13T12:08:23.488Z | 2024-07-19T12:13:40.327Z |
4619101 | 4619101 | 20240710232422_bCW2D | UK009K | 2024-07-13T12:08:23.488Z | 2024-07-19T12:13:40.327Z |
4619102 | 4619102 | 20240710232422_bCW2D | UK009S | 2024-07-13T12:08:23.488Z | 2024-07-19T12:13:40.327Z |
4619103 | 4619103 | 20240710232422_bCW2D | UK009W | 2024-07-13T12:08:23.488Z | 2024-07-19T12:13:40.327Z |
4619104 | 4619104 | 20240710232422_bCW2D | UK00A5 | 2024-07-13T12:08:23.488Z | 2024-07-19T12:13:40.327Z |
4619105 | 4619105 | 20240710232422_bCW2D | UK00AG | 2024-07-13T12:08:23.488Z | 2024-07-19T12:13:40.327Z |
4619093 | 4619093 | 20240710232422_bCW2D | UK000S | 2024-07-13T12:08:23.487Z | 2024-07-19T12:13:40.326Z |
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);