participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20260217043824_dC7zA" 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 |
|---|---|---|---|---|---|
| 9336826 | 9336826 | 20260217043824_dC7zA | UK009K | 2026-02-18T14:05:34.921Z | 2026-02-26T14:39:21.814Z |
| 9336827 | 9336827 | 20260217043824_dC7zA | UK009W | 2026-02-18T14:05:34.921Z | 2026-02-26T14:39:21.814Z |
| 9336828 | 9336828 | 20260217043824_dC7zA | UK00A5 | 2026-02-18T14:05:34.921Z | 2026-02-26T14:39:21.814Z |
| 9336815 | 9336815 | 20260217043824_dC7zA | UK0006 | 2026-02-18T14:05:34.909Z | 2026-02-26T14:39:21.814Z |
| 9336816 | 9336816 | 20260217043824_dC7zA | UK0009 | 2026-02-18T14:05:34.909Z | 2026-02-26T14:39:21.814Z |
| 9336817 | 9336817 | 20260217043824_dC7zA | UK001S | 2026-02-18T14:05:34.909Z | 2026-02-26T14:39:21.814Z |
| 9336818 | 9336818 | 20260217043824_dC7zA | UK0029 | 2026-02-18T14:05:34.909Z | 2026-02-26T14:39:21.814Z |
| 9336819 | 9336819 | 20260217043824_dC7zA | UK003Z | 2026-02-18T14:05:34.909Z | 2026-02-26T14:39:21.814Z |
| 9336820 | 9336820 | 20260217043824_dC7zA | UK0049 | 2026-02-18T14:05:34.909Z | 2026-02-26T14:39:21.814Z |
| 9336821 | 9336821 | 20260217043824_dC7zA | UK0060 | 2026-02-18T14:05:34.909Z | 2026-02-26T14:39:21.814Z |
| 9336822 | 9336822 | 20260217043824_dC7zA | UK007B | 2026-02-18T14:05:34.909Z | 2026-02-26T14:39:21.814Z |
| 9336823 | 9336823 | 20260217043824_dC7zA | UK0084 | 2026-02-18T14:05:34.909Z | 2026-02-26T14:39:21.814Z |
| 9336824 | 9336824 | 20260217043824_dC7zA | UK008X | 2026-02-18T14:05:34.909Z | 2026-02-26T14:39:21.814Z |
| 9336825 | 9336825 | 20260217043824_dC7zA | UK009G | 2026-02-18T14:05:34.909Z | 2026-02-26T14:39:21.814Z |
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);