participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20260316024946_5b0GH" 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 |
|---|---|---|---|---|---|
| 9494710 | 9494710 | 20260316024946_5b0GH | UK0004 | 2026-03-17T12:04:43.065Z | 2026-03-24T12:40:49.461Z |
| 9494711 | 9494711 | 20260316024946_5b0GH | UK000F | 2026-03-17T12:04:43.065Z | 2026-03-24T12:40:49.461Z |
| 9494712 | 9494712 | 20260316024946_5b0GH | UK0045 | 2026-03-17T12:04:43.065Z | 2026-03-24T12:40:49.461Z |
| 9494713 | 9494713 | 20260316024946_5b0GH | UK006U | 2026-03-17T12:04:43.065Z | 2026-03-24T12:40:49.461Z |
| 9494714 | 9494714 | 20260316024946_5b0GH | UK007C | 2026-03-17T12:04:43.065Z | 2026-03-24T12:40:49.462Z |
| 9494715 | 9494715 | 20260316024946_5b0GH | UK009R | 2026-03-17T12:04:43.065Z | 2026-03-24T12:40:49.462Z |
| 9494716 | 9494716 | 20260316024946_5b0GH | UK00AF | 2026-03-17T12:04:43.065Z | 2026-03-24T12:40:49.462Z |
| 9494717 | 9494717 | 20260316024946_5b0GH | UK00AN | 2026-03-17T12:04:43.065Z | 2026-03-24T12:40:49.462Z |
| 9494718 | 9494718 | 20260316024946_5b0GH | UK00B1 | 2026-03-17T12:04:43.065Z | 2026-03-24T12:40:49.462Z |
| 9494719 | 9494719 | 20260316024946_5b0GH | UK00CA | 2026-03-17T12:04:43.065Z | 2026-03-24T12:40:49.462Z |
| 9494707 | 9494707 | 20260316024946_5b0GH | BE0003 | 2026-03-17T12:04:43.043Z | 2026-03-24T12:40:49.461Z |
| 9494708 | 9494708 | 20260316024946_5b0GH | BE0009 | 2026-03-17T12:04:43.043Z | 2026-03-24T12:40:49.461Z |
| 9494709 | 9494709 | 20260316024946_5b0GH | BE000T | 2026-03-17T12:04:43.043Z | 2026-03-24T12:40:49.461Z |
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);