participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20260326044012_vIzfz" 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 |
|---|---|---|---|---|---|
| 9582113 | 9582113 | 20260326044012_vIzfz | UK000S | 2026-03-27T12:04:40.848Z | 2026-04-04T12:39:38.175Z |
| 9582114 | 9582114 | 20260326044012_vIzfz | UK001L | 2026-03-27T12:04:40.848Z | 2026-04-04T12:39:38.175Z |
| 9582115 | 9582115 | 20260326044012_vIzfz | UK004D | 2026-03-27T12:04:40.848Z | 2026-04-04T12:39:38.175Z |
| 9582116 | 9582116 | 20260326044012_vIzfz | UK004N | 2026-03-27T12:04:40.848Z | 2026-04-04T12:39:38.175Z |
| 9582117 | 9582117 | 20260326044012_vIzfz | UK005V | 2026-03-27T12:04:40.848Z | 2026-04-04T12:39:38.175Z |
| 9582118 | 9582118 | 20260326044012_vIzfz | UK006L | 2026-03-27T12:04:40.848Z | 2026-04-04T12:39:38.175Z |
| 9582119 | 9582119 | 20260326044012_vIzfz | UK0098 | 2026-03-27T12:04:40.848Z | 2026-04-04T12:39:38.175Z |
| 9582120 | 9582120 | 20260326044012_vIzfz | UK009G | 2026-03-27T12:04:40.848Z | 2026-04-04T12:39:38.175Z |
| 9582121 | 9582121 | 20260326044012_vIzfz | UK00AE | 2026-03-27T12:04:40.848Z | 2026-04-04T12:39:38.175Z |
| 9582122 | 9582122 | 20260326044012_vIzfz | UK00AT | 2026-03-27T12:04:40.848Z | 2026-04-04T12:39:38.175Z |
| 9582123 | 9582123 | 20260326044012_vIzfz | UK00C1 | 2026-03-27T12:04:40.848Z | 2026-04-04T12:39:38.176Z |
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);