participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
10 rows where meteor_unique_trajectory_identifier = "20260223002324_rvXRL" 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 |
|---|---|---|---|---|---|
| 9372494 | 9372494 | 20260223002324_rvXRL | UK00CJ | 2026-02-24T14:00:44.381Z | 2026-03-03T14:30:41.289Z |
| 9372493 | 9372493 | 20260223002324_rvXRL | UK00BH | 2026-02-24T14:00:44.364Z | 2026-03-03T14:30:41.289Z |
| 9372490 | 9372490 | 20260223002324_rvXRL | UK009L | 2026-02-24T14:00:44.351Z | 2026-03-03T14:30:41.289Z |
| 9372491 | 9372491 | 20260223002324_rvXRL | UK00A4 | 2026-02-24T14:00:44.351Z | 2026-03-03T14:30:41.289Z |
| 9372492 | 9372492 | 20260223002324_rvXRL | UK00B1 | 2026-02-24T14:00:44.351Z | 2026-03-03T14:30:41.289Z |
| 9372489 | 9372489 | 20260223002324_rvXRL | UK006G | 2026-02-24T14:00:44.349Z | 2026-03-03T14:30:41.289Z |
| 9372487 | 9372487 | 20260223002324_rvXRL | UK002F | 2026-02-24T14:00:44.338Z | 2026-03-03T14:30:41.289Z |
| 9372488 | 9372488 | 20260223002324_rvXRL | UK006D | 2026-02-24T14:00:44.338Z | 2026-03-03T14:30:41.289Z |
| 9372486 | 9372486 | 20260223002324_rvXRL | BE0019 | 2026-02-24T14:00:44.326Z | 2026-03-03T14:30:41.289Z |
| 9372485 | 9372485 | 20260223002324_rvXRL | BE000X | 2026-02-24T14:00:44.304Z | 2026-03-03T14:30:41.269Z |
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);