participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
17 rows where meteor_unique_trajectory_identifier = "20240318045844_U5WTP" 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 |
|---|---|---|---|---|---|
| 4086864 | 4086864 | 20240318045844_U5WTP | UK000Z | 2024-03-19T12:09:08.873Z | 2024-03-26T12:21:11.307Z |
| 4086865 | 4086865 | 20240318045844_U5WTP | UK001L | 2024-03-19T12:09:08.873Z | 2024-03-26T12:21:11.307Z |
| 4086866 | 4086866 | 20240318045844_U5WTP | UK001T | 2024-03-19T12:09:08.873Z | 2024-03-26T12:21:11.307Z |
| 4086867 | 4086867 | 20240318045844_U5WTP | UK0032 | 2024-03-19T12:09:08.873Z | 2024-03-26T12:21:11.307Z |
| 4086868 | 4086868 | 20240318045844_U5WTP | UK003T | 2024-03-19T12:09:08.873Z | 2024-03-26T12:21:11.307Z |
| 4086869 | 4086869 | 20240318045844_U5WTP | UK004B | 2024-03-19T12:09:08.873Z | 2024-03-26T12:21:11.307Z |
| 4086870 | 4086870 | 20240318045844_U5WTP | UK004D | 2024-03-19T12:09:08.873Z | 2024-03-26T12:21:11.307Z |
| 4086871 | 4086871 | 20240318045844_U5WTP | UK005H | 2024-03-19T12:09:08.873Z | 2024-03-26T12:21:11.307Z |
| 4086872 | 4086872 | 20240318045844_U5WTP | UK006C | 2024-03-19T12:09:08.873Z | 2024-03-26T12:21:11.307Z |
| 4086873 | 4086873 | 20240318045844_U5WTP | UK006T | 2024-03-19T12:09:08.873Z | 2024-03-26T12:21:11.307Z |
| 4086874 | 4086874 | 20240318045844_U5WTP | UK006Z | 2024-03-19T12:09:08.873Z | 2024-03-26T12:21:11.307Z |
| 4086875 | 4086875 | 20240318045844_U5WTP | UK0075 | 2024-03-19T12:09:08.873Z | 2024-03-26T12:21:11.307Z |
| 4086876 | 4086876 | 20240318045844_U5WTP | UK008G | 2024-03-19T12:09:08.873Z | 2024-03-26T12:21:11.307Z |
| 4086877 | 4086877 | 20240318045844_U5WTP | UK009L | 2024-03-19T12:09:08.873Z | 2024-03-26T12:21:11.307Z |
| 4086878 | 4086878 | 20240318045844_U5WTP | UK00A3 | 2024-03-19T12:09:08.873Z | 2024-03-26T12:21:11.307Z |
| 4086879 | 4086879 | 20240318045844_U5WTP | UK00AM | 2024-03-19T12:09:08.873Z | 2024-03-26T12:21:11.307Z |
| 4086880 | 4086880 | 20240318045844_U5WTP | UK00AZ | 2024-03-19T12:09:08.873Z | 2024-03-26T12:21:11.307Z |
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);