participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20240118053807_OSxWZ" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: updated_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
3856429 | 3856429 | 20240118053807_OSxWZ | UK001L | 2024-01-21T14:09:00.522Z | 2024-01-26T14:21:23.185Z |
3856430 | 3856430 | 20240118053807_OSxWZ | UK001N | 2024-01-21T14:09:00.522Z | 2024-01-26T14:21:23.185Z |
3856431 | 3856431 | 20240118053807_OSxWZ | UK001R | 2024-01-21T14:09:00.522Z | 2024-01-26T14:21:23.185Z |
3856432 | 3856432 | 20240118053807_OSxWZ | UK002X | 2024-01-21T14:09:00.522Z | 2024-01-26T14:21:23.185Z |
3856433 | 3856433 | 20240118053807_OSxWZ | UK003Y | 2024-01-21T14:09:00.522Z | 2024-01-26T14:21:23.185Z |
3856434 | 3856434 | 20240118053807_OSxWZ | UK005R | 2024-01-21T14:09:00.522Z | 2024-01-26T14:21:23.185Z |
3856435 | 3856435 | 20240118053807_OSxWZ | UK006T | 2024-01-21T14:09:00.522Z | 2024-01-26T14:21:23.186Z |
3856436 | 3856436 | 20240118053807_OSxWZ | UK008G | 2024-01-21T14:09:00.522Z | 2024-01-26T14:21:23.186Z |
3856437 | 3856437 | 20240118053807_OSxWZ | UK008S | 2024-01-21T14:09:00.522Z | 2024-01-26T14:21:23.186Z |
3856438 | 3856438 | 20240118053807_OSxWZ | UK009C | 2024-01-21T14:09:00.522Z | 2024-01-26T14:21:23.186Z |
3856439 | 3856439 | 20240118053807_OSxWZ | UK00AM | 2024-01-21T14:09:00.522Z | 2024-01-26T14:21:23.186Z |
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);