participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
15 rows where meteor_unique_trajectory_identifier = "20260222215339_feVFj" 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 |
|---|---|---|---|---|---|
| 9381336 | 9381336 | 20260222215339_feVFj | UK00AE | 2026-02-24T14:24:32.793Z | 2026-02-24T14:24:32.793Z |
| 9381337 | 9381337 | 20260222215339_feVFj | UK00B0 | 2026-02-24T14:24:32.793Z | 2026-02-24T14:24:32.793Z |
| 9381338 | 9381338 | 20260222215339_feVFj | UK00B1 | 2026-02-24T14:24:32.793Z | 2026-02-24T14:24:32.793Z |
| 9381339 | 9381339 | 20260222215339_feVFj | UK00BA | 2026-02-24T14:24:32.793Z | 2026-02-24T14:24:32.793Z |
| 9381340 | 9381340 | 20260222215339_feVFj | UK00CQ | 2026-02-24T14:24:32.793Z | 2026-02-24T14:24:32.793Z |
| 9381341 | 9381341 | 20260222215339_feVFj | UK00DN | 2026-02-24T14:24:32.793Z | 2026-02-24T14:24:32.793Z |
| 9381327 | 9381327 | 20260222215339_feVFj | UK0006 | 2026-02-24T14:24:32.792Z | 2026-02-24T14:24:32.792Z |
| 9381328 | 9381328 | 20260222215339_feVFj | UK000S | 2026-02-24T14:24:32.792Z | 2026-02-24T14:24:32.792Z |
| 9381329 | 9381329 | 20260222215339_feVFj | UK001Z | 2026-02-24T14:24:32.792Z | 2026-02-24T14:24:32.792Z |
| 9381330 | 9381330 | 20260222215339_feVFj | UK0031 | 2026-02-24T14:24:32.792Z | 2026-02-24T14:24:32.792Z |
| 9381331 | 9381331 | 20260222215339_feVFj | UK0067 | 2026-02-24T14:24:32.792Z | 2026-02-24T14:24:32.792Z |
| 9381332 | 9381332 | 20260222215339_feVFj | UK007P | 2026-02-24T14:24:32.792Z | 2026-02-24T14:24:32.792Z |
| 9381333 | 9381333 | 20260222215339_feVFj | UK007R | 2026-02-24T14:24:32.792Z | 2026-02-24T14:24:32.792Z |
| 9381334 | 9381334 | 20260222215339_feVFj | UK008X | 2026-02-24T14:24:32.792Z | 2026-02-24T14:24:32.792Z |
| 9381335 | 9381335 | 20260222215339_feVFj | UK009G | 2026-02-24T14:24:32.792Z | 2026-02-24T14:24:32.792Z |
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);