participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20260318022028_hed4h" 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 |
|---|---|---|---|---|---|
| 9509902 | 9509902 | 20260318022028_hed4h | BE0009 | 2026-03-19T12:06:25.945Z | 2026-03-26T12:37:08.462Z |
| 9509903 | 9509903 | 20260318022028_hed4h | BE000T | 2026-03-19T12:06:25.945Z | 2026-03-26T12:37:08.462Z |
| 9509904 | 9509904 | 20260318022028_hed4h | BE0013 | 2026-03-19T12:06:25.945Z | 2026-03-26T12:37:08.462Z |
| 9509905 | 9509905 | 20260318022028_hed4h | BE0014 | 2026-03-19T12:06:25.945Z | 2026-03-26T12:37:08.462Z |
| 9509906 | 9509906 | 20260318022028_hed4h | UK000F | 2026-03-19T12:06:25.945Z | 2026-03-26T12:37:08.462Z |
| 9509907 | 9509907 | 20260318022028_hed4h | UK0041 | 2026-03-19T12:06:25.945Z | 2026-03-26T12:37:08.462Z |
| 9509908 | 9509908 | 20260318022028_hed4h | UK006D | 2026-03-19T12:06:25.945Z | 2026-03-26T12:37:08.462Z |
| 9509909 | 9509909 | 20260318022028_hed4h | UK007C | 2026-03-19T12:06:25.945Z | 2026-03-26T12:37:08.462Z |
| 9509910 | 9509910 | 20260318022028_hed4h | UK007H | 2026-03-19T12:06:25.945Z | 2026-03-26T12:37:08.462Z |
| 9509911 | 9509911 | 20260318022028_hed4h | UK009L | 2026-03-19T12:06:25.945Z | 2026-03-26T12:37:08.462Z |
| 9509912 | 9509912 | 20260318022028_hed4h | UK009R | 2026-03-19T12:06:25.945Z | 2026-03-26T12:37:08.462Z |
| 9509913 | 9509913 | 20260318022028_hed4h | UK00AF | 2026-03-19T12:06:25.945Z | 2026-03-26T12:37:08.462Z |
| 9509914 | 9509914 | 20260318022028_hed4h | UK00B1 | 2026-03-19T12:06:25.945Z | 2026-03-26T12:37:08.462Z |
| 9509915 | 9509915 | 20260318022028_hed4h | UK00BC | 2026-03-19T12:06:25.945Z | 2026-03-26T12:37:08.462Z |
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);