participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
9 rows where meteor_unique_trajectory_identifier = "20260321235120_2QdVm" 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 |
|---|---|---|---|---|---|
| 9552328 | 9552328 | 20260321235120_2QdVm | UK00B2 | 2026-03-23T12:00:14.689Z | 2026-03-30T12:27:22.319Z |
| 9552329 | 9552329 | 20260321235120_2QdVm | UK00DN | 2026-03-23T12:00:14.689Z | 2026-03-30T12:27:22.319Z |
| 9552327 | 9552327 | 20260321235120_2QdVm | UK00B1 | 2026-03-23T12:00:14.683Z | 2026-03-30T12:27:22.319Z |
| 9552326 | 9552326 | 20260321235120_2QdVm | UK00AY | 2026-03-23T12:00:14.668Z | 2026-03-30T12:27:22.319Z |
| 9552324 | 9552324 | 20260321235120_2QdVm | UK00A5 | 2026-03-23T12:00:14.655Z | 2026-03-30T12:27:22.319Z |
| 9552325 | 9552325 | 20260321235120_2QdVm | UK00AE | 2026-03-23T12:00:14.655Z | 2026-03-30T12:27:22.319Z |
| 9552321 | 9552321 | 20260321235120_2QdVm | UK000S | 2026-03-23T12:00:14.644Z | 2026-03-30T12:27:22.319Z |
| 9552322 | 9552322 | 20260321235120_2QdVm | UK0084 | 2026-03-23T12:00:14.644Z | 2026-03-30T12:27:22.319Z |
| 9552323 | 9552323 | 20260321235120_2QdVm | UK009V | 2026-03-23T12:00:14.644Z | 2026-03-30T12:27:22.319Z |
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);