participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20260217020844_V1jAS" 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 |
|---|---|---|---|---|---|
| 9335567 | 9335567 | 20260217020844_V1jAS | UK009G | 2026-02-18T14:01:31.629Z | 2026-02-26T14:38:56.063Z |
| 9335568 | 9335568 | 20260217020844_V1jAS | UK009K | 2026-02-18T14:01:31.629Z | 2026-02-26T14:38:56.063Z |
| 9335569 | 9335569 | 20260217020844_V1jAS | UK00BA | 2026-02-18T14:01:31.629Z | 2026-02-26T14:38:56.063Z |
| 9335557 | 9335557 | 20260217020844_V1jAS | UK000S | 2026-02-18T14:01:31.626Z | 2026-02-26T14:38:56.063Z |
| 9335558 | 9335558 | 20260217020844_V1jAS | UK001Z | 2026-02-18T14:01:31.626Z | 2026-02-26T14:38:56.063Z |
| 9335559 | 9335559 | 20260217020844_V1jAS | UK0031 | 2026-02-18T14:01:31.626Z | 2026-02-26T14:38:56.063Z |
| 9335560 | 9335560 | 20260217020844_V1jAS | UK0049 | 2026-02-18T14:01:31.626Z | 2026-02-26T14:38:56.063Z |
| 9335561 | 9335561 | 20260217020844_V1jAS | UK007A | 2026-02-18T14:01:31.626Z | 2026-02-26T14:38:56.063Z |
| 9335562 | 9335562 | 20260217020844_V1jAS | UK007B | 2026-02-18T14:01:31.626Z | 2026-02-26T14:38:56.063Z |
| 9335563 | 9335563 | 20260217020844_V1jAS | UK007P | 2026-02-18T14:01:31.626Z | 2026-02-26T14:38:56.063Z |
| 9335564 | 9335564 | 20260217020844_V1jAS | UK008B | 2026-02-18T14:01:31.626Z | 2026-02-26T14:38:56.063Z |
| 9335565 | 9335565 | 20260217020844_V1jAS | UK008J | 2026-02-18T14:01:31.626Z | 2026-02-26T14:38:56.063Z |
| 9335566 | 9335566 | 20260217020844_V1jAS | UK008X | 2026-02-18T14:01:31.626Z | 2026-02-26T14:38:56.063Z |
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);