participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20260321234845_vj5o3" 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 |
|---|---|---|---|---|---|
| 9552304 | 9552304 | 20260321234845_vj5o3 | UK00CU | 2026-03-23T12:00:12.685Z | 2026-03-30T12:27:21.976Z |
| 9552302 | 9552302 | 20260321234845_vj5o3 | UK0087 | 2026-03-23T12:00:12.670Z | 2026-03-30T12:27:21.976Z |
| 9552303 | 9552303 | 20260321234845_vj5o3 | UK00A3 | 2026-03-23T12:00:12.670Z | 2026-03-30T12:27:21.976Z |
| 9552301 | 9552301 | 20260321234845_vj5o3 | UK007Y | 2026-03-23T12:00:12.661Z | 2026-03-30T12:27:21.976Z |
| 9552300 | 9552300 | 20260321234845_vj5o3 | UK006G | 2026-03-23T12:00:12.635Z | 2026-03-30T12:27:21.976Z |
| 9552299 | 9552299 | 20260321234845_vj5o3 | UK005C | 2026-03-23T12:00:12.626Z | 2026-03-30T12:27:21.976Z |
| 9552298 | 9552298 | 20260321234845_vj5o3 | UK004B | 2026-03-23T12:00:12.614Z | 2026-03-30T12:27:21.976Z |
| 9552297 | 9552297 | 20260321234845_vj5o3 | UK003B | 2026-03-23T12:00:12.603Z | 2026-03-30T12:27:21.976Z |
| 9552296 | 9552296 | 20260321234845_vj5o3 | UK002K | 2026-03-23T12:00:12.589Z | 2026-03-30T12:27:21.976Z |
| 9552295 | 9552295 | 20260321234845_vj5o3 | UK002F | 2026-03-23T12:00:12.577Z | 2026-03-30T12:27:21.976Z |
| 9552294 | 9552294 | 20260321234845_vj5o3 | UK000Y | 2026-03-23T12:00:12.565Z | 2026-03-30T12:27:21.976Z |
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);