participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20260217013400_lNUVL" 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 |
|---|---|---|---|---|---|
| 9335394 | 9335394 | 20260217013400_lNUVL | UK009X | 2026-02-18T14:00:58.566Z | 2026-02-26T14:38:53.573Z |
| 9335395 | 9335395 | 20260217013400_lNUVL | UK00A6 | 2026-02-18T14:00:58.566Z | 2026-02-26T14:38:53.573Z |
| 9335396 | 9335396 | 20260217013400_lNUVL | UK00AF | 2026-02-18T14:00:58.566Z | 2026-02-26T14:38:53.573Z |
| 9335397 | 9335397 | 20260217013400_lNUVL | UK00B1 | 2026-02-18T14:00:58.566Z | 2026-02-26T14:38:53.573Z |
| 9335391 | 9335391 | 20260217013400_lNUVL | UK0078 | 2026-02-18T14:00:58.558Z | 2026-02-26T14:38:53.573Z |
| 9335392 | 9335392 | 20260217013400_lNUVL | UK007H | 2026-02-18T14:00:58.558Z | 2026-02-26T14:38:53.573Z |
| 9335393 | 9335393 | 20260217013400_lNUVL | UK008C | 2026-02-18T14:00:58.558Z | 2026-02-26T14:38:53.573Z |
| 9335384 | 9335384 | 20260217013400_lNUVL | UK000F | 2026-02-18T14:00:58.538Z | 2026-02-26T14:38:53.573Z |
| 9335385 | 9335385 | 20260217013400_lNUVL | UK002Y | 2026-02-18T14:00:58.538Z | 2026-02-26T14:38:53.573Z |
| 9335386 | 9335386 | 20260217013400_lNUVL | UK003N | 2026-02-18T14:00:58.538Z | 2026-02-26T14:38:53.573Z |
| 9335387 | 9335387 | 20260217013400_lNUVL | UK0045 | 2026-02-18T14:00:58.538Z | 2026-02-26T14:38:53.573Z |
| 9335388 | 9335388 | 20260217013400_lNUVL | UK005P | 2026-02-18T14:00:58.538Z | 2026-02-26T14:38:53.573Z |
| 9335389 | 9335389 | 20260217013400_lNUVL | UK005U | 2026-02-18T14:00:58.538Z | 2026-02-26T14:38:53.573Z |
| 9335390 | 9335390 | 20260217013400_lNUVL | UK006D | 2026-02-18T14:00:58.538Z | 2026-02-26T14:38:53.573Z |
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);