participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20260224220926_qO6zj" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
| Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
|---|---|---|---|---|---|
| 9394888 | 9394888 | 20260224220926_qO6zj | UK000U | 2026-02-26T14:20:50.759Z | 2026-03-04T14:19:28.085Z |
| 9394889 | 9394889 | 20260224220926_qO6zj | UK001L | 2026-02-26T14:20:50.759Z | 2026-03-04T14:19:28.085Z |
| 9394890 | 9394890 | 20260224220926_qO6zj | UK0031 | 2026-02-26T14:20:50.759Z | 2026-03-04T14:19:28.085Z |
| 9394891 | 9394891 | 20260224220926_qO6zj | UK003X | 2026-02-26T14:20:50.759Z | 2026-03-04T14:19:28.085Z |
| 9394892 | 9394892 | 20260224220926_qO6zj | UK005H | 2026-02-26T14:20:50.759Z | 2026-03-04T14:19:28.085Z |
| 9394893 | 9394893 | 20260224220926_qO6zj | UK005L | 2026-02-26T14:20:50.759Z | 2026-03-04T14:19:28.085Z |
| 9394894 | 9394894 | 20260224220926_qO6zj | UK006L | 2026-02-26T14:20:50.759Z | 2026-03-04T14:19:28.085Z |
| 9394895 | 9394895 | 20260224220926_qO6zj | UK0087 | 2026-02-26T14:20:50.759Z | 2026-03-04T14:19:28.085Z |
| 9394896 | 9394896 | 20260224220926_qO6zj | UK00AL | 2026-02-26T14:20:50.759Z | 2026-03-04T14:19:28.085Z |
| 9394897 | 9394897 | 20260224220926_qO6zj | UK00AM | 2026-02-26T14:20:50.759Z | 2026-03-04T14:19:28.085Z |
| 9394898 | 9394898 | 20260224220926_qO6zj | UK00B0 | 2026-02-26T14:20:50.759Z | 2026-03-04T14:19:28.085Z |
| 9394899 | 9394899 | 20260224220926_qO6zj | UK00BF | 2026-02-26T14:20:50.759Z | 2026-03-04T14:19:28.085Z |
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);