participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
9 rows where meteor_unique_trajectory_identifier = "20260317233523_PmY7E" 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 |
|---|---|---|---|---|---|
| 9507694 | 9507694 | 20260317233523_PmY7E | UK00BC | 2026-03-19T12:01:00.865Z | 2026-03-26T12:36:52.653Z |
| 9507693 | 9507693 | 20260317233523_PmY7E | UK00B1 | 2026-03-19T12:01:00.841Z | 2026-03-26T12:36:52.653Z |
| 9507692 | 9507692 | 20260317233523_PmY7E | UK009L | 2026-03-19T12:01:00.830Z | 2026-03-26T12:36:52.653Z |
| 9507691 | 9507691 | 20260317233523_PmY7E | UK009J | 2026-03-19T12:01:00.820Z | 2026-03-26T12:36:52.653Z |
| 9507690 | 9507690 | 20260317233523_PmY7E | UK007R | 2026-03-19T12:01:00.810Z | 2026-03-26T12:36:52.653Z |
| 9507689 | 9507689 | 20260317233523_PmY7E | UK007H | 2026-03-19T12:01:00.802Z | 2026-03-26T12:36:52.653Z |
| 9507688 | 9507688 | 20260317233523_PmY7E | UK007C | 2026-03-19T12:01:00.788Z | 2026-03-26T12:36:52.653Z |
| 9507687 | 9507687 | 20260317233523_PmY7E | UK006D | 2026-03-19T12:01:00.774Z | 2026-03-26T12:36:52.653Z |
| 9507686 | 9507686 | 20260317233523_PmY7E | UK003D | 2026-03-19T12:01:00.738Z | 2026-03-26T12:36:52.653Z |
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);