participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
10 rows where meteor_unique_trajectory_identifier = "20260217012531_X567a" 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 |
|---|---|---|---|---|---|
| 9335325 | 9335325 | 20260217012531_X567a | UK001L | 2026-02-18T14:00:45.486Z | 2026-02-26T14:38:52.979Z |
| 9335326 | 9335326 | 20260217012531_X567a | UK0042 | 2026-02-18T14:00:45.486Z | 2026-02-26T14:38:52.979Z |
| 9335327 | 9335327 | 20260217012531_X567a | UK004V | 2026-02-18T14:00:45.486Z | 2026-02-26T14:38:52.979Z |
| 9335328 | 9335328 | 20260217012531_X567a | UK006A | 2026-02-18T14:00:45.486Z | 2026-02-26T14:38:52.979Z |
| 9335329 | 9335329 | 20260217012531_X567a | UK006T | 2026-02-18T14:00:45.486Z | 2026-02-26T14:38:52.979Z |
| 9335330 | 9335330 | 20260217012531_X567a | UK0083 | 2026-02-18T14:00:45.486Z | 2026-02-26T14:38:52.979Z |
| 9335331 | 9335331 | 20260217012531_X567a | UK009C | 2026-02-18T14:00:45.486Z | 2026-02-26T14:38:52.979Z |
| 9335332 | 9335332 | 20260217012531_X567a | UK009K | 2026-02-18T14:00:45.486Z | 2026-02-26T14:38:52.979Z |
| 9335333 | 9335333 | 20260217012531_X567a | UK009P | 2026-02-18T14:00:45.486Z | 2026-02-26T14:38:52.979Z |
| 9335334 | 9335334 | 20260217012531_X567a | UK00AA | 2026-02-18T14:00:45.486Z | 2026-02-26T14:38:52.979Z |
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);