participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20260325233302_zGkxv" 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 |
|---|---|---|---|---|---|
| 9585134 | 9585134 | 20260325233302_zGkxv | UK0006 | 2026-03-27T12:16:50.374Z | 2026-04-03T12:39:50.346Z |
| 9585135 | 9585135 | 20260325233302_zGkxv | UK000D | 2026-03-27T12:16:50.374Z | 2026-04-03T12:39:50.346Z |
| 9585136 | 9585136 | 20260325233302_zGkxv | UK002J | 2026-03-27T12:16:50.374Z | 2026-04-03T12:39:50.346Z |
| 9585137 | 9585137 | 20260325233302_zGkxv | UK003E | 2026-03-27T12:16:50.374Z | 2026-04-03T12:39:50.346Z |
| 9585138 | 9585138 | 20260325233302_zGkxv | UK0049 | 2026-03-27T12:16:50.374Z | 2026-04-03T12:39:50.346Z |
| 9585139 | 9585139 | 20260325233302_zGkxv | UK0060 | 2026-03-27T12:16:50.374Z | 2026-04-03T12:39:50.346Z |
| 9585140 | 9585140 | 20260325233302_zGkxv | UK0067 | 2026-03-27T12:16:50.374Z | 2026-04-03T12:39:50.346Z |
| 9585141 | 9585141 | 20260325233302_zGkxv | UK007A | 2026-03-27T12:16:50.374Z | 2026-04-03T12:39:50.346Z |
| 9585142 | 9585142 | 20260325233302_zGkxv | UK007Q | 2026-03-27T12:16:50.374Z | 2026-04-03T12:39:50.346Z |
| 9585143 | 9585143 | 20260325233302_zGkxv | UK009D | 2026-03-27T12:16:50.374Z | 2026-04-03T12:39:50.346Z |
| 9585144 | 9585144 | 20260325233302_zGkxv | UK009S | 2026-03-27T12:16:50.374Z | 2026-04-03T12:39:50.346Z |
| 9585145 | 9585145 | 20260325233302_zGkxv | UK00BK | 2026-03-27T12:16:50.374Z | 2026-04-03T12:39:50.346Z |
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);