participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
15 rows where meteor_unique_trajectory_identifier = "20250225231927_p8fYm" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, updated_at, created_at (date), updated_at (date)
| Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
|---|---|---|---|---|---|
| 6172363 | 6172363 | 20250225231927_p8fYm | UK0024 | 2025-02-27T14:06:17.594Z | 2025-03-04T15:09:46.827Z |
| 6172364 | 6172364 | 20250225231927_p8fYm | UK007Q | 2025-02-27T14:06:17.594Z | 2025-03-04T15:09:46.827Z |
| 6172365 | 6172365 | 20250225231927_p8fYm | UK009K | 2025-02-27T14:06:17.594Z | 2025-03-04T15:09:46.827Z |
| 6172366 | 6172366 | 20250225231927_p8fYm | UK00A1 | 2025-02-27T14:06:17.594Z | 2025-03-04T15:09:46.827Z |
| 6172367 | 6172367 | 20250225231927_p8fYm | UK00AP | 2025-02-27T14:06:17.594Z | 2025-03-04T15:09:46.827Z |
| 6172368 | 6172368 | 20250225231927_p8fYm | UK00AU | 2025-02-27T14:06:17.594Z | 2025-03-04T15:09:46.827Z |
| 6172369 | 6172369 | 20250225231927_p8fYm | UK00BB | 2025-02-27T14:06:17.594Z | 2025-03-04T15:09:46.827Z |
| 6172370 | 6172370 | 20250225231927_p8fYm | UK00BB_2 | 2025-02-27T14:06:17.594Z | 2025-03-04T15:09:46.827Z |
| 6172371 | 6172371 | 20250225231927_p8fYm | UK00BK | 2025-02-27T14:06:17.594Z | 2025-03-04T15:09:46.827Z |
| 6172372 | 6172372 | 20250225231927_p8fYm | UK00BW | 2025-02-27T14:06:17.594Z | 2025-03-04T15:09:46.827Z |
| 6172373 | 6172373 | 20250225231927_p8fYm | UK00CQ | 2025-02-27T14:06:17.594Z | 2025-03-04T15:09:46.828Z |
| 6172359 | 6172359 | 20250225231927_p8fYm | UK000D | 2025-02-27T14:06:17.581Z | 2025-03-04T15:09:46.827Z |
| 6172360 | 6172360 | 20250225231927_p8fYm | UK001K | 2025-02-27T14:06:17.581Z | 2025-03-04T15:09:46.827Z |
| 6172361 | 6172361 | 20250225231927_p8fYm | UK001M | 2025-02-27T14:06:17.581Z | 2025-03-04T15:09:46.827Z |
| 6172362 | 6172362 | 20250225231927_p8fYm | UK001S | 2025-02-27T14:06:17.581Z | 2025-03-04T15:09:46.827Z |
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);