participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
10 rows where meteor_unique_trajectory_identifier = "20260326042255_ceDiy" 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 |
|---|---|---|---|---|---|
| 9582030 | 9582030 | 20260326042255_ceDiy | UK000D | 2026-03-27T12:04:26.564Z | 2026-04-04T12:39:35.492Z |
| 9582031 | 9582031 | 20260326042255_ceDiy | UK000H | 2026-03-27T12:04:26.564Z | 2026-04-04T12:39:35.492Z |
| 9582032 | 9582032 | 20260326042255_ceDiy | UK003E | 2026-03-27T12:04:26.564Z | 2026-04-04T12:39:35.492Z |
| 9582033 | 9582033 | 20260326042255_ceDiy | UK003Z | 2026-03-27T12:04:26.564Z | 2026-04-04T12:39:35.492Z |
| 9582034 | 9582034 | 20260326042255_ceDiy | UK0060 | 2026-03-27T12:04:26.564Z | 2026-04-04T12:39:35.492Z |
| 9582035 | 9582035 | 20260326042255_ceDiy | UK008D | 2026-03-27T12:04:26.564Z | 2026-04-04T12:39:35.492Z |
| 9582036 | 9582036 | 20260326042255_ceDiy | UK009W | 2026-03-27T12:04:26.564Z | 2026-04-04T12:39:35.492Z |
| 9582037 | 9582037 | 20260326042255_ceDiy | UK00AB | 2026-03-27T12:04:26.564Z | 2026-04-04T12:39:35.492Z |
| 9582038 | 9582038 | 20260326042255_ceDiy | UK00B5 | 2026-03-27T12:04:26.564Z | 2026-04-04T12:39:35.492Z |
| 9582039 | 9582039 | 20260326042255_ceDiy | UK00BW | 2026-03-27T12:04:26.564Z | 2026-04-04T12:39:35.492Z |
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);