participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
15 rows where meteor_unique_trajectory_identifier = "20221006044913_A61QA" 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 |
|---|---|---|---|---|---|
| 1745612 | 1745612 | 20221006044913_A61QA | UK001P | 2024-01-05T23:50:49.492Z | 2024-01-05T23:50:49.492Z |
| 1745613 | 1745613 | 20221006044913_A61QA | UK0025 | 2024-01-05T23:50:49.492Z | 2024-01-05T23:50:49.492Z |
| 1745614 | 1745614 | 20221006044913_A61QA | UK0038 | 2024-01-05T23:50:49.492Z | 2024-01-05T23:50:49.492Z |
| 1745615 | 1745615 | 20221006044913_A61QA | UK003C | 2024-01-05T23:50:49.492Z | 2024-01-05T23:50:49.492Z |
| 1745616 | 1745616 | 20221006044913_A61QA | UK003D | 2024-01-05T23:50:49.492Z | 2024-01-05T23:50:49.492Z |
| 1745617 | 1745617 | 20221006044913_A61QA | UK003M | 2024-01-05T23:50:49.492Z | 2024-01-05T23:50:49.492Z |
| 1745618 | 1745618 | 20221006044913_A61QA | UK003N | 2024-01-05T23:50:49.492Z | 2024-01-05T23:50:49.492Z |
| 1745619 | 1745619 | 20221006044913_A61QA | UK0049 | 2024-01-05T23:50:49.492Z | 2024-01-05T23:50:49.492Z |
| 1745620 | 1745620 | 20221006044913_A61QA | UK004F | 2024-01-05T23:50:49.492Z | 2024-01-05T23:50:49.492Z |
| 1745621 | 1745621 | 20221006044913_A61QA | UK006B | 2024-01-05T23:50:49.492Z | 2024-01-05T23:50:49.492Z |
| 1745622 | 1745622 | 20221006044913_A61QA | UK006X | 2024-01-05T23:50:49.492Z | 2024-01-05T23:50:49.492Z |
| 1745623 | 1745623 | 20221006044913_A61QA | UK007B | 2024-01-05T23:50:49.492Z | 2024-01-05T23:50:49.492Z |
| 1745624 | 1745624 | 20221006044913_A61QA | UK007E | 2024-01-05T23:50:49.492Z | 2024-01-05T23:50:49.492Z |
| 1745625 | 1745625 | 20221006044913_A61QA | UK007H | 2024-01-05T23:50:49.492Z | 2024-01-05T23:50:49.492Z |
| 1745626 | 1745626 | 20221006044913_A61QA | UK007V | 2024-01-05T23:50:49.492Z | 2024-01-05T23:50:49.492Z |
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);