participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20260321220520_HhDDh" 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 |
|---|---|---|---|---|---|
| 9560717 | 9560717 | 20260321220520_HhDDh | UK0001 | 2026-03-23T12:12:01.790Z | 2026-03-29T12:21:02.362Z |
| 9560718 | 9560718 | 20260321220520_HhDDh | UK0009 | 2026-03-23T12:12:01.790Z | 2026-03-29T12:21:02.362Z |
| 9560719 | 9560719 | 20260321220520_HhDDh | UK000F | 2026-03-23T12:12:01.790Z | 2026-03-29T12:21:02.362Z |
| 9560720 | 9560720 | 20260321220520_HhDDh | UK0022 | 2026-03-23T12:12:01.790Z | 2026-03-29T12:21:02.362Z |
| 9560721 | 9560721 | 20260321220520_HhDDh | UK002Q | 2026-03-23T12:12:01.790Z | 2026-03-29T12:21:02.362Z |
| 9560722 | 9560722 | 20260321220520_HhDDh | UK003N | 2026-03-23T12:12:01.790Z | 2026-03-29T12:21:02.362Z |
| 9560723 | 9560723 | 20260321220520_HhDDh | UK004F | 2026-03-23T12:12:01.790Z | 2026-03-29T12:21:02.362Z |
| 9560724 | 9560724 | 20260321220520_HhDDh | UK005N | 2026-03-23T12:12:01.790Z | 2026-03-29T12:21:02.362Z |
| 9560725 | 9560725 | 20260321220520_HhDDh | UK0078 | 2026-03-23T12:12:01.790Z | 2026-03-29T12:21:02.362Z |
| 9560726 | 9560726 | 20260321220520_HhDDh | UK007H | 2026-03-23T12:12:01.790Z | 2026-03-29T12:21:02.362Z |
| 9560727 | 9560727 | 20260321220520_HhDDh | UK0084 | 2026-03-23T12:12:01.790Z | 2026-03-29T12:21:02.362Z |
| 9560728 | 9560728 | 20260321220520_HhDDh | UK00C7 | 2026-03-23T12:12:01.790Z | 2026-03-29T12:21:02.362Z |
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);