participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20260319013951_qAr54" 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 |
|---|---|---|---|---|---|
| 9518980 | 9518980 | 20260319013951_qAr54 | UK001Z | 2026-03-20T12:03:42.662Z | 2026-03-27T12:40:16.972Z |
| 9518981 | 9518981 | 20260319013951_qAr54 | UK007A | 2026-03-20T12:03:42.662Z | 2026-03-27T12:40:16.972Z |
| 9518982 | 9518982 | 20260319013951_qAr54 | UK008J | 2026-03-20T12:03:42.662Z | 2026-03-27T12:40:16.972Z |
| 9518983 | 9518983 | 20260319013951_qAr54 | UK009K | 2026-03-20T12:03:42.662Z | 2026-03-27T12:40:16.972Z |
| 9518984 | 9518984 | 20260319013951_qAr54 | UK009P | 2026-03-20T12:03:42.662Z | 2026-03-27T12:40:16.972Z |
| 9518985 | 9518985 | 20260319013951_qAr54 | UK009S | 2026-03-20T12:03:42.662Z | 2026-03-27T12:40:16.972Z |
| 9518986 | 9518986 | 20260319013951_qAr54 | UK00B0 | 2026-03-20T12:03:42.662Z | 2026-03-27T12:40:16.972Z |
| 9518987 | 9518987 | 20260319013951_qAr54 | UK00BA | 2026-03-20T12:03:42.662Z | 2026-03-27T12:40:16.972Z |
| 9518988 | 9518988 | 20260319013951_qAr54 | UK00BD | 2026-03-20T12:03:42.662Z | 2026-03-27T12:40:16.972Z |
| 9518989 | 9518989 | 20260319013951_qAr54 | UK00BK | 2026-03-20T12:03:42.662Z | 2026-03-27T12:40:16.972Z |
| 9518990 | 9518990 | 20260319013951_qAr54 | UK00C9 | 2026-03-20T12:03:42.662Z | 2026-03-27T12:40:16.972Z |
| 9518991 | 9518991 | 20260319013951_qAr54 | UK00CK | 2026-03-20T12:03:42.662Z | 2026-03-27T12:40:16.972Z |
| 9518992 | 9518992 | 20260319013951_qAr54 | UK00CQ | 2026-03-20T12:03:42.662Z | 2026-03-27T12:40:16.972Z |
| 9518993 | 9518993 | 20260319013951_qAr54 | UK00DA | 2026-03-20T12:03:42.662Z | 2026-03-27T12:40:16.972Z |
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);