participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20260319032150_oYxSL" 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 |
|---|---|---|---|---|---|
| 9520532 | 9520532 | 20260319032150_oYxSL | UK001L | 2026-03-20T12:06:31.030Z | 2026-03-27T12:40:44.535Z |
| 9520533 | 9520533 | 20260319032150_oYxSL | UK0042 | 2026-03-20T12:06:31.030Z | 2026-03-27T12:40:44.535Z |
| 9520534 | 9520534 | 20260319032150_oYxSL | UK004M | 2026-03-20T12:06:31.030Z | 2026-03-27T12:40:44.536Z |
| 9520535 | 9520535 | 20260319032150_oYxSL | UK004N | 2026-03-20T12:06:31.030Z | 2026-03-27T12:40:44.536Z |
| 9520536 | 9520536 | 20260319032150_oYxSL | UK008J | 2026-03-20T12:06:31.030Z | 2026-03-27T12:40:44.536Z |
| 9520537 | 9520537 | 20260319032150_oYxSL | UK008S | 2026-03-20T12:06:31.030Z | 2026-03-27T12:40:44.536Z |
| 9520538 | 9520538 | 20260319032150_oYxSL | UK008U | 2026-03-20T12:06:31.030Z | 2026-03-27T12:40:44.536Z |
| 9520539 | 9520539 | 20260319032150_oYxSL | UK0090 | 2026-03-20T12:06:31.030Z | 2026-03-27T12:40:44.536Z |
| 9520540 | 9520540 | 20260319032150_oYxSL | UK009P | 2026-03-20T12:06:31.030Z | 2026-03-27T12:40:44.536Z |
| 9520541 | 9520541 | 20260319032150_oYxSL | UK00AJ | 2026-03-20T12:06:31.030Z | 2026-03-27T12:40:44.536Z |
| 9520542 | 9520542 | 20260319032150_oYxSL | UK00B0 | 2026-03-20T12:06:31.030Z | 2026-03-27T12:40:44.536Z |
| 9520543 | 9520543 | 20260319032150_oYxSL | UK00CH | 2026-03-20T12:06:31.030Z | 2026-03-27T12:40:44.536Z |
| 9520544 | 9520544 | 20260319032150_oYxSL | UK00CK | 2026-03-20T12:06:31.030Z | 2026-03-27T12:40:44.536Z |
| 9520545 | 9520545 | 20260319032150_oYxSL | UK00D9 | 2026-03-20T12:06:31.030Z | 2026-03-27T12:40:44.536Z |
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);