participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20260314205104_7WNSo" 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 |
|---|---|---|---|---|---|
| 9492449 | 9492449 | 20260314205104_7WNSo | UK008F | 2026-03-16T12:28:35.095Z | 2026-03-22T12:42:52.432Z |
| 9492450 | 9492450 | 20260314205104_7WNSo | UK009L | 2026-03-16T12:28:35.095Z | 2026-03-22T12:42:52.432Z |
| 9492451 | 9492451 | 20260314205104_7WNSo | UK00A0 | 2026-03-16T12:28:35.095Z | 2026-03-22T12:42:52.432Z |
| 9492452 | 9492452 | 20260314205104_7WNSo | UK00AL | 2026-03-16T12:28:35.095Z | 2026-03-22T12:42:52.432Z |
| 9492453 | 9492453 | 20260314205104_7WNSo | UK00AN | 2026-03-16T12:28:35.095Z | 2026-03-22T12:42:52.432Z |
| 9492454 | 9492454 | 20260314205104_7WNSo | UK00AT | 2026-03-16T12:28:35.095Z | 2026-03-22T12:42:52.432Z |
| 9492443 | 9492443 | 20260314205104_7WNSo | UK002F | 2026-03-16T12:28:35.075Z | 2026-03-22T12:42:52.432Z |
| 9492444 | 9492444 | 20260314205104_7WNSo | UK0034 | 2026-03-16T12:28:35.075Z | 2026-03-22T12:42:52.432Z |
| 9492445 | 9492445 | 20260314205104_7WNSo | UK003X | 2026-03-16T12:28:35.075Z | 2026-03-22T12:42:52.432Z |
| 9492446 | 9492446 | 20260314205104_7WNSo | UK0041 | 2026-03-16T12:28:35.075Z | 2026-03-22T12:42:52.432Z |
| 9492447 | 9492447 | 20260314205104_7WNSo | UK005M | 2026-03-16T12:28:35.075Z | 2026-03-22T12:42:52.432Z |
| 9492448 | 9492448 | 20260314205104_7WNSo | UK0086 | 2026-03-16T12:28:35.075Z | 2026-03-22T12:42:52.432Z |
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);