participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
10 rows where meteor_unique_trajectory_identifier = "20260311050314_8My7Z" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, created_at (date), updated_at (date)
| Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
|---|---|---|---|---|---|
| 9457733 | 9457733 | 20260311050314_8My7Z | UK00DN | 2026-03-12T12:04:26.915Z | 2026-03-19T12:44:51.413Z |
| 9457728 | 9457728 | 20260311050314_8My7Z | UK008V | 2026-03-12T12:04:26.899Z | 2026-03-19T12:44:51.413Z |
| 9457729 | 9457729 | 20260311050314_8My7Z | UK009J | 2026-03-12T12:04:26.899Z | 2026-03-19T12:44:51.413Z |
| 9457730 | 9457730 | 20260311050314_8My7Z | UK009V | 2026-03-12T12:04:26.899Z | 2026-03-19T12:44:51.413Z |
| 9457731 | 9457731 | 20260311050314_8My7Z | UK00AT | 2026-03-12T12:04:26.899Z | 2026-03-19T12:44:51.413Z |
| 9457732 | 9457732 | 20260311050314_8My7Z | UK00CA | 2026-03-12T12:04:26.899Z | 2026-03-19T12:44:51.413Z |
| 9457726 | 9457726 | 20260311050314_8My7Z | UK007R | 2026-03-12T12:04:26.884Z | 2026-03-19T12:44:51.413Z |
| 9457727 | 9457727 | 20260311050314_8My7Z | UK0086 | 2026-03-12T12:04:26.884Z | 2026-03-19T12:44:51.413Z |
| 9457724 | 9457724 | 20260311050314_8My7Z | UK000F | 2026-03-12T12:04:26.871Z | 2026-03-19T12:44:51.413Z |
| 9457725 | 9457725 | 20260311050314_8My7Z | UK002Q | 2026-03-12T12:04:26.871Z | 2026-03-19T12:44:51.413Z |
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);