participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20260318010319_9IkBy" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, updated_at, created_at (date), updated_at (date)
| Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
|---|---|---|---|---|---|
| 9508573 | 9508573 | 20260318010319_9IkBy | UK004J | 2026-03-19T12:03:21.328Z | 2026-03-26T12:36:59.352Z |
| 9508574 | 9508574 | 20260318010319_9IkBy | UK009X | 2026-03-19T12:03:21.328Z | 2026-03-26T12:36:59.352Z |
| 9508575 | 9508575 | 20260318010319_9IkBy | UK00BC | 2026-03-19T12:03:21.328Z | 2026-03-26T12:36:59.352Z |
| 9508576 | 9508576 | 20260318010319_9IkBy | UK00CJ | 2026-03-19T12:03:21.328Z | 2026-03-26T12:36:59.352Z |
| 9508572 | 9508572 | 20260318010319_9IkBy | UK004C | 2026-03-19T12:03:21.318Z | 2026-03-26T12:36:59.352Z |
| 9508570 | 9508570 | 20260318010319_9IkBy | UK002F | 2026-03-19T12:03:21.306Z | 2026-03-26T12:36:59.352Z |
| 9508571 | 9508571 | 20260318010319_9IkBy | UK0034 | 2026-03-19T12:03:21.306Z | 2026-03-26T12:36:59.352Z |
| 9508565 | 9508565 | 20260318010319_9IkBy | BE0008 | 2026-03-19T12:03:21.305Z | 2026-03-26T12:36:59.351Z |
| 9508566 | 9508566 | 20260318010319_9IkBy | BE000A | 2026-03-19T12:03:21.305Z | 2026-03-26T12:36:59.351Z |
| 9508567 | 9508567 | 20260318010319_9IkBy | BE000B | 2026-03-19T12:03:21.305Z | 2026-03-26T12:36:59.352Z |
| 9508568 | 9508568 | 20260318010319_9IkBy | BE000G | 2026-03-19T12:03:21.305Z | 2026-03-26T12:36:59.352Z |
| 9508569 | 9508569 | 20260318010319_9IkBy | NL000M | 2026-03-19T12:03:21.305Z | 2026-03-26T12:36:59.352Z |
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);