participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20260318034844_VVLd2" 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 |
|---|---|---|---|---|---|
| 9511382 | 9511382 | 20260318034844_VVLd2 | UK003F | 2026-03-19T12:10:05.105Z | 2026-03-26T12:37:36.525Z |
| 9511383 | 9511383 | 20260318034844_VVLd2 | UK0042 | 2026-03-19T12:10:05.105Z | 2026-03-26T12:37:36.525Z |
| 9511384 | 9511384 | 20260318034844_VVLd2 | UK004D | 2026-03-19T12:10:05.105Z | 2026-03-26T12:37:36.525Z |
| 9511385 | 9511385 | 20260318034844_VVLd2 | UK004V | 2026-03-19T12:10:05.105Z | 2026-03-26T12:37:36.525Z |
| 9511386 | 9511386 | 20260318034844_VVLd2 | UK0057 | 2026-03-19T12:10:05.105Z | 2026-03-26T12:37:36.525Z |
| 9511387 | 9511387 | 20260318034844_VVLd2 | UK009K | 2026-03-19T12:10:05.105Z | 2026-03-26T12:37:36.525Z |
| 9511388 | 9511388 | 20260318034844_VVLd2 | UK00B0 | 2026-03-19T12:10:05.105Z | 2026-03-26T12:37:36.525Z |
| 9511389 | 9511389 | 20260318034844_VVLd2 | UK00C9 | 2026-03-19T12:10:05.105Z | 2026-03-26T12:37:36.525Z |
| 9511390 | 9511390 | 20260318034844_VVLd2 | UK00CH | 2026-03-19T12:10:05.105Z | 2026-03-26T12:37:36.525Z |
| 9511391 | 9511391 | 20260318034844_VVLd2 | UK00CQ | 2026-03-19T12:10:05.105Z | 2026-03-26T12:37:36.525Z |
| 9511392 | 9511392 | 20260318034844_VVLd2 | UK00DE | 2026-03-19T12:10:05.105Z | 2026-03-26T12:37:36.525Z |
| 9511381 | 9511381 | 20260318034844_VVLd2 | UK001L | 2026-03-19T12:10:05.104Z | 2026-03-26T12:37:36.525Z |
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);