participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
9 rows where meteor_unique_trajectory_identifier = "20260310140646_uAPnK" 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 |
|---|---|---|---|---|---|
| 9453591 | 9453591 | 20260310140646_uAPnK | KR003T | 2026-03-11T12:07:53.665Z | 2026-03-18T12:39:38.672Z |
| 9453588 | 9453588 | 20260310140646_uAPnK | KR0026 | 2026-03-11T12:07:53.653Z | 2026-03-18T12:39:38.672Z |
| 9453589 | 9453589 | 20260310140646_uAPnK | KR0027 | 2026-03-11T12:07:53.653Z | 2026-03-18T12:39:38.672Z |
| 9453590 | 9453590 | 20260310140646_uAPnK | KR002G | 2026-03-11T12:07:53.653Z | 2026-03-18T12:39:38.672Z |
| 9453587 | 9453587 | 20260310140646_uAPnK | KR0021 | 2026-03-11T12:07:53.652Z | 2026-03-18T12:39:38.672Z |
| 9453583 | 9453583 | 20260310140646_uAPnK | KR0004 | 2026-03-11T12:07:53.619Z | 2026-03-18T12:39:38.672Z |
| 9453584 | 9453584 | 20260310140646_uAPnK | KR000L | 2026-03-11T12:07:53.619Z | 2026-03-18T12:39:38.672Z |
| 9453585 | 9453585 | 20260310140646_uAPnK | KR0016 | 2026-03-11T12:07:53.619Z | 2026-03-18T12:39:38.672Z |
| 9453586 | 9453586 | 20260310140646_uAPnK | KR001Y | 2026-03-11T12:07:53.619Z | 2026-03-18T12:39:38.672Z |
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);