participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20260318005954_ygVNl" 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 |
|---|---|---|---|---|---|
| 9508491 | 9508491 | 20260318005954_ygVNl | UK007H | 2026-03-19T12:03:14.480Z | 2026-03-26T12:36:59.026Z |
| 9508492 | 9508492 | 20260318005954_ygVNl | UK009V | 2026-03-19T12:03:14.480Z | 2026-03-26T12:36:59.026Z |
| 9508493 | 9508493 | 20260318005954_ygVNl | UK00A6 | 2026-03-19T12:03:14.480Z | 2026-03-26T12:36:59.026Z |
| 9508494 | 9508494 | 20260318005954_ygVNl | UK00AF | 2026-03-19T12:03:14.480Z | 2026-03-26T12:36:59.026Z |
| 9508495 | 9508495 | 20260318005954_ygVNl | UK00B1 | 2026-03-19T12:03:14.480Z | 2026-03-26T12:36:59.026Z |
| 9508496 | 9508496 | 20260318005954_ygVNl | UK00BC | 2026-03-19T12:03:14.480Z | 2026-03-26T12:36:59.026Z |
| 9508486 | 9508486 | 20260318005954_ygVNl | UK000F | 2026-03-19T12:03:14.479Z | 2026-03-26T12:36:59.026Z |
| 9508487 | 9508487 | 20260318005954_ygVNl | UK003N | 2026-03-19T12:03:14.479Z | 2026-03-26T12:36:59.026Z |
| 9508488 | 9508488 | 20260318005954_ygVNl | UK005N | 2026-03-19T12:03:14.479Z | 2026-03-26T12:36:59.026Z |
| 9508489 | 9508489 | 20260318005954_ygVNl | UK006D | 2026-03-19T12:03:14.479Z | 2026-03-26T12:36:59.026Z |
| 9508490 | 9508490 | 20260318005954_ygVNl | UK0078 | 2026-03-19T12:03:14.479Z | 2026-03-26T12:36:59.026Z |
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);