participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20260214051725_zcUjY" 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 |
|---|---|---|---|---|---|
| 9323402 | 9323402 | 20260214051725_zcUjY | UK00CQ | 2026-02-15T14:06:08.345Z | 2026-02-23T14:46:31.707Z |
| 9323391 | 9323391 | 20260214051725_zcUjY | UK005S | 2026-02-15T14:06:08.327Z | 2026-02-23T14:46:31.707Z |
| 9323392 | 9323392 | 20260214051725_zcUjY | UK0067 | 2026-02-15T14:06:08.327Z | 2026-02-23T14:46:31.707Z |
| 9323393 | 9323393 | 20260214051725_zcUjY | UK007P | 2026-02-15T14:06:08.327Z | 2026-02-23T14:46:31.707Z |
| 9323394 | 9323394 | 20260214051725_zcUjY | UK0083 | 2026-02-15T14:06:08.327Z | 2026-02-23T14:46:31.707Z |
| 9323395 | 9323395 | 20260214051725_zcUjY | UK008J | 2026-02-15T14:06:08.327Z | 2026-02-23T14:46:31.707Z |
| 9323396 | 9323396 | 20260214051725_zcUjY | UK00AJ | 2026-02-15T14:06:08.327Z | 2026-02-23T14:46:31.707Z |
| 9323397 | 9323397 | 20260214051725_zcUjY | UK00BA | 2026-02-15T14:06:08.327Z | 2026-02-23T14:46:31.707Z |
| 9323398 | 9323398 | 20260214051725_zcUjY | UK00BK | 2026-02-15T14:06:08.327Z | 2026-02-23T14:46:31.707Z |
| 9323399 | 9323399 | 20260214051725_zcUjY | UK00C1 | 2026-02-15T14:06:08.327Z | 2026-02-23T14:46:31.707Z |
| 9323400 | 9323400 | 20260214051725_zcUjY | UK00CH | 2026-02-15T14:06:08.327Z | 2026-02-23T14:46:31.707Z |
| 9323401 | 9323401 | 20260214051725_zcUjY | UK00CK | 2026-02-15T14:06:08.327Z | 2026-02-23T14:46:31.707Z |
| 9323389 | 9323389 | 20260214051725_zcUjY | UK003U | 2026-02-15T14:06:08.326Z | 2026-02-23T14:46:31.707Z |
| 9323390 | 9323390 | 20260214051725_zcUjY | UK005L | 2026-02-15T14:06:08.326Z | 2026-02-23T14:46:31.707Z |
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);