participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20260216211716_0VU9Q" 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 |
|---|---|---|---|---|---|
| 9339822 | 9339822 | 20260216211716_0VU9Q | UK000S | 2026-02-18T14:23:11.703Z | 2026-02-25T14:42:46.927Z |
| 9339823 | 9339823 | 20260216211716_0VU9Q | UK0030 | 2026-02-18T14:23:11.703Z | 2026-02-25T14:42:46.927Z |
| 9339824 | 9339824 | 20260216211716_0VU9Q | UK004N | 2026-02-18T14:23:11.703Z | 2026-02-25T14:42:46.927Z |
| 9339825 | 9339825 | 20260216211716_0VU9Q | UK005M | 2026-02-18T14:23:11.703Z | 2026-02-25T14:42:46.927Z |
| 9339826 | 9339826 | 20260216211716_0VU9Q | UK007R | 2026-02-18T14:23:11.703Z | 2026-02-25T14:42:46.927Z |
| 9339827 | 9339827 | 20260216211716_0VU9Q | UK0086 | 2026-02-18T14:23:11.703Z | 2026-02-25T14:42:46.927Z |
| 9339828 | 9339828 | 20260216211716_0VU9Q | UK008J | 2026-02-18T14:23:11.703Z | 2026-02-25T14:42:46.927Z |
| 9339829 | 9339829 | 20260216211716_0VU9Q | UK0098 | 2026-02-18T14:23:11.703Z | 2026-02-25T14:42:46.927Z |
| 9339830 | 9339830 | 20260216211716_0VU9Q | UK00AE | 2026-02-18T14:23:11.703Z | 2026-02-25T14:42:46.927Z |
| 9339831 | 9339831 | 20260216211716_0VU9Q | UK00AG | 2026-02-18T14:23:11.703Z | 2026-02-25T14:42:46.927Z |
| 9339832 | 9339832 | 20260216211716_0VU9Q | UK00AL | 2026-02-18T14:23:11.703Z | 2026-02-25T14:42:46.927Z |
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);