participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
17 rows where meteor_unique_trajectory_identifier = "20230120221148_JGIVN" 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 |
---|---|---|---|---|---|
2216287 | 2216287 | 20230120221148_JGIVN | UK0070 | 2024-01-05T23:54:30.756Z | 2024-01-05T23:54:30.756Z |
2216288 | 2216288 | 20230120221148_JGIVN | UK0072 | 2024-01-05T23:54:30.756Z | 2024-01-05T23:54:30.756Z |
2216289 | 2216289 | 20230120221148_JGIVN | UK0083 | 2024-01-05T23:54:30.756Z | 2024-01-05T23:54:30.756Z |
2216273 | 2216273 | 20230120221148_JGIVN | UK001L | 2024-01-05T23:54:30.755Z | 2024-01-05T23:54:30.755Z |
2216274 | 2216274 | 20230120221148_JGIVN | UK001N | 2024-01-05T23:54:30.755Z | 2024-01-05T23:54:30.755Z |
2216275 | 2216275 | 20230120221148_JGIVN | UK001U | 2024-01-05T23:54:30.755Z | 2024-01-05T23:54:30.755Z |
2216276 | 2216276 | 20230120221148_JGIVN | UK001V | 2024-01-05T23:54:30.755Z | 2024-01-05T23:54:30.755Z |
2216277 | 2216277 | 20230120221148_JGIVN | UK002H | 2024-01-05T23:54:30.755Z | 2024-01-05T23:54:30.755Z |
2216278 | 2216278 | 20230120221148_JGIVN | UK0032 | 2024-01-05T23:54:30.755Z | 2024-01-05T23:54:30.755Z |
2216279 | 2216279 | 20230120221148_JGIVN | UK0033 | 2024-01-05T23:54:30.755Z | 2024-01-05T23:54:30.755Z |
2216280 | 2216280 | 20230120221148_JGIVN | UK003X | 2024-01-05T23:54:30.755Z | 2024-01-05T23:54:30.755Z |
2216281 | 2216281 | 20230120221148_JGIVN | UK003Y | 2024-01-05T23:54:30.755Z | 2024-01-05T23:54:30.755Z |
2216282 | 2216282 | 20230120221148_JGIVN | UK0042 | 2024-01-05T23:54:30.755Z | 2024-01-05T23:54:30.755Z |
2216283 | 2216283 | 20230120221148_JGIVN | UK004M | 2024-01-05T23:54:30.755Z | 2024-01-05T23:54:30.755Z |
2216284 | 2216284 | 20230120221148_JGIVN | UK004N | 2024-01-05T23:54:30.755Z | 2024-01-05T23:54:30.755Z |
2216285 | 2216285 | 20230120221148_JGIVN | UK0050 | 2024-01-05T23:54:30.755Z | 2024-01-05T23:54:30.755Z |
2216286 | 2216286 | 20230120221148_JGIVN | UK006A | 2024-01-05T23:54:30.755Z | 2024-01-05T23:54:30.755Z |
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);