participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20260319015149_yclRi" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, created_at (date), updated_at (date)
| Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
|---|---|---|---|---|---|
| 9519121 | 9519121 | 20260319015149_yclRi | UK007P | 2026-03-20T12:03:58.269Z | 2026-03-27T12:40:18.450Z |
| 9519122 | 9519122 | 20260319015149_yclRi | UK008X | 2026-03-20T12:03:58.269Z | 2026-03-27T12:40:18.450Z |
| 9519123 | 9519123 | 20260319015149_yclRi | UK009G | 2026-03-20T12:03:58.269Z | 2026-03-27T12:40:18.450Z |
| 9519124 | 9519124 | 20260319015149_yclRi | UK009K | 2026-03-20T12:03:58.269Z | 2026-03-27T12:40:18.450Z |
| 9519125 | 9519125 | 20260319015149_yclRi | UK00B0 | 2026-03-20T12:03:58.269Z | 2026-03-27T12:40:18.450Z |
| 9519126 | 9519126 | 20260319015149_yclRi | UK00BA | 2026-03-20T12:03:58.269Z | 2026-03-27T12:40:18.450Z |
| 9519127 | 9519127 | 20260319015149_yclRi | UK00CQ | 2026-03-20T12:03:58.269Z | 2026-03-27T12:40:18.450Z |
| 9519128 | 9519128 | 20260319015149_yclRi | UK00DA | 2026-03-20T12:03:58.269Z | 2026-03-27T12:40:18.450Z |
| 9519129 | 9519129 | 20260319015149_yclRi | UK00DG | 2026-03-20T12:03:58.269Z | 2026-03-27T12:40:18.450Z |
| 9519130 | 9519130 | 20260319015149_yclRi | UK00DH | 2026-03-20T12:03:58.269Z | 2026-03-27T12:40:18.450Z |
| 9519120 | 9519120 | 20260319015149_yclRi | UK005S | 2026-03-20T12:03:58.247Z | 2026-03-27T12:40:18.450Z |
| 9519117 | 9519117 | 20260319015149_yclRi | UK0006 | 2026-03-20T12:03:58.246Z | 2026-03-27T12:40:18.450Z |
| 9519118 | 9519118 | 20260319015149_yclRi | UK001S | 2026-03-20T12:03:58.246Z | 2026-03-27T12:40:18.450Z |
| 9519119 | 9519119 | 20260319015149_yclRi | UK0049 | 2026-03-20T12:03:58.246Z | 2026-03-27T12:40:18.450Z |
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);