participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20260223044219_n2Nn5" 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 |
|---|---|---|---|---|---|
| 9373876 | 9373876 | 20260223044219_n2Nn5 | UK0009 | 2026-02-24T14:04:12.113Z | 2026-03-03T14:31:11.053Z |
| 9373877 | 9373877 | 20260223044219_n2Nn5 | UK000F | 2026-02-24T14:04:12.113Z | 2026-03-03T14:31:11.053Z |
| 9373878 | 9373878 | 20260223044219_n2Nn5 | UK001S | 2026-02-24T14:04:12.113Z | 2026-03-03T14:31:11.053Z |
| 9373879 | 9373879 | 20260223044219_n2Nn5 | UK0022 | 2026-02-24T14:04:12.113Z | 2026-03-03T14:31:11.053Z |
| 9373880 | 9373880 | 20260223044219_n2Nn5 | UK003D | 2026-02-24T14:04:12.113Z | 2026-03-03T14:31:11.053Z |
| 9373881 | 9373881 | 20260223044219_n2Nn5 | UK005N | 2026-02-24T14:04:12.113Z | 2026-03-03T14:31:11.053Z |
| 9373882 | 9373882 | 20260223044219_n2Nn5 | UK009V | 2026-02-24T14:04:12.113Z | 2026-03-03T14:31:11.053Z |
| 9373883 | 9373883 | 20260223044219_n2Nn5 | UK009W | 2026-02-24T14:04:12.113Z | 2026-03-03T14:31:11.053Z |
| 9373884 | 9373884 | 20260223044219_n2Nn5 | UK00B2 | 2026-02-24T14:04:12.113Z | 2026-03-03T14:31:11.053Z |
| 9373885 | 9373885 | 20260223044219_n2Nn5 | UK00B6 | 2026-02-24T14:04:12.113Z | 2026-03-03T14:31:11.053Z |
| 9373886 | 9373886 | 20260223044219_n2Nn5 | UK00BF | 2026-02-24T14:04:12.113Z | 2026-03-03T14:31:11.053Z |
| 9373887 | 9373887 | 20260223044219_n2Nn5 | UK00DN | 2026-02-24T14:04:12.113Z | 2026-03-03T14:31:11.053Z |
| 9373875 | 9373875 | 20260223044219_n2Nn5 | UK0006 | 2026-02-24T14:04:12.112Z | 2026-03-03T14:31:11.053Z |
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);