participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20260319041831_837jl" 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 |
|---|---|---|---|---|---|
| 9521456 | 9521456 | 20260319041831_837jl | UK001L | 2026-03-20T12:08:02.793Z | 2026-03-27T12:40:54.961Z |
| 9521457 | 9521457 | 20260319041831_837jl | UK003F | 2026-03-20T12:08:02.793Z | 2026-03-27T12:40:54.962Z |
| 9521458 | 9521458 | 20260319041831_837jl | UK0042 | 2026-03-20T12:08:02.793Z | 2026-03-27T12:40:54.962Z |
| 9521459 | 9521459 | 20260319041831_837jl | UK0070 | 2026-03-20T12:08:02.793Z | 2026-03-27T12:40:54.962Z |
| 9521460 | 9521460 | 20260319041831_837jl | UK007A | 2026-03-20T12:08:02.793Z | 2026-03-27T12:40:54.962Z |
| 9521461 | 9521461 | 20260319041831_837jl | UK0083 | 2026-03-20T12:08:02.793Z | 2026-03-27T12:40:54.962Z |
| 9521462 | 9521462 | 20260319041831_837jl | UK008U | 2026-03-20T12:08:02.793Z | 2026-03-27T12:40:54.962Z |
| 9521463 | 9521463 | 20260319041831_837jl | UK009K | 2026-03-20T12:08:02.793Z | 2026-03-27T12:40:54.962Z |
| 9521464 | 9521464 | 20260319041831_837jl | UK009P | 2026-03-20T12:08:02.793Z | 2026-03-27T12:40:54.962Z |
| 9521465 | 9521465 | 20260319041831_837jl | UK00B0 | 2026-03-20T12:08:02.793Z | 2026-03-27T12:40:54.962Z |
| 9521466 | 9521466 | 20260319041831_837jl | UK00C9 | 2026-03-20T12:08:02.793Z | 2026-03-27T12:40:54.962Z |
| 9521467 | 9521467 | 20260319041831_837jl | UK00CH | 2026-03-20T12:08:02.793Z | 2026-03-27T12:40:54.962Z |
| 9521468 | 9521468 | 20260319041831_837jl | UK00D9 | 2026-03-20T12:08:02.793Z | 2026-03-27T12:40:54.962Z |
| 9521469 | 9521469 | 20260319041831_837jl | UK00DE | 2026-03-20T12:08:02.793Z | 2026-03-27T12:40:54.962Z |
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);