participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20260216211104_6B34w" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: updated_at, created_at (date), updated_at (date)
| Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
|---|---|---|---|---|---|
| 9339794 | 9339794 | 20260216211104_6B34w | UK0009 | 2026-02-18T14:23:04.433Z | 2026-02-25T14:42:46.624Z |
| 9339795 | 9339795 | 20260216211104_6B34w | UK000D | 2026-02-18T14:23:04.433Z | 2026-02-25T14:42:46.624Z |
| 9339796 | 9339796 | 20260216211104_6B34w | UK000T | 2026-02-18T14:23:04.433Z | 2026-02-25T14:42:46.624Z |
| 9339797 | 9339797 | 20260216211104_6B34w | UK001S | 2026-02-18T14:23:04.433Z | 2026-02-25T14:42:46.624Z |
| 9339798 | 9339798 | 20260216211104_6B34w | UK003Z | 2026-02-18T14:23:04.433Z | 2026-02-25T14:42:46.625Z |
| 9339799 | 9339799 | 20260216211104_6B34w | UK0060 | 2026-02-18T14:23:04.433Z | 2026-02-25T14:42:46.625Z |
| 9339800 | 9339800 | 20260216211104_6B34w | UK0067 | 2026-02-18T14:23:04.433Z | 2026-02-25T14:42:46.625Z |
| 9339801 | 9339801 | 20260216211104_6B34w | UK0089 | 2026-02-18T14:23:04.433Z | 2026-02-25T14:42:46.625Z |
| 9339802 | 9339802 | 20260216211104_6B34w | UK008X | 2026-02-18T14:23:04.433Z | 2026-02-25T14:42:46.625Z |
| 9339803 | 9339803 | 20260216211104_6B34w | UK009G | 2026-02-18T14:23:04.433Z | 2026-02-25T14:42:46.625Z |
| 9339804 | 9339804 | 20260216211104_6B34w | UK009S | 2026-02-18T14:23:04.433Z | 2026-02-25T14:42:46.625Z |
| 9339805 | 9339805 | 20260216211104_6B34w | UK009W | 2026-02-18T14:23:04.433Z | 2026-02-25T14:42:46.625Z |
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);