participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20260320022606_PR29b" 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 |
|---|---|---|---|---|---|
| 9533363 | 9533363 | 20260320022606_PR29b | UK001L | 2026-03-21T12:05:16.562Z | 2026-03-28T12:33:52.472Z |
| 9533364 | 9533364 | 20260320022606_PR29b | UK003F | 2026-03-21T12:05:16.562Z | 2026-03-28T12:33:52.472Z |
| 9533365 | 9533365 | 20260320022606_PR29b | UK0042 | 2026-03-21T12:05:16.562Z | 2026-03-28T12:33:52.472Z |
| 9533366 | 9533366 | 20260320022606_PR29b | UK004D | 2026-03-21T12:05:16.562Z | 2026-03-28T12:33:52.472Z |
| 9533367 | 9533367 | 20260320022606_PR29b | UK004M | 2026-03-21T12:05:16.562Z | 2026-03-28T12:33:52.472Z |
| 9533368 | 9533368 | 20260320022606_PR29b | UK009P | 2026-03-21T12:05:16.562Z | 2026-03-28T12:33:52.472Z |
| 9533369 | 9533369 | 20260320022606_PR29b | UK00AJ | 2026-03-21T12:05:16.562Z | 2026-03-28T12:33:52.472Z |
| 9533370 | 9533370 | 20260320022606_PR29b | UK00C0 | 2026-03-21T12:05:16.562Z | 2026-03-28T12:33:52.472Z |
| 9533371 | 9533371 | 20260320022606_PR29b | UK00C9 | 2026-03-21T12:05:16.562Z | 2026-03-28T12:33:52.472Z |
| 9533372 | 9533372 | 20260320022606_PR29b | UK00CH | 2026-03-21T12:05:16.562Z | 2026-03-28T12:33:52.472Z |
| 9533373 | 9533373 | 20260320022606_PR29b | UK00CQ | 2026-03-21T12:05:16.562Z | 2026-03-28T12:33:52.472Z |
| 9533374 | 9533374 | 20260320022606_PR29b | UK00D9 | 2026-03-21T12:05:16.562Z | 2026-03-28T12:33:52.472Z |
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);