participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20260219115019_mCAdi" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: updated_at, created_at (date), updated_at (date)
| Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
|---|---|---|---|---|---|
| 9356364 | 9356364 | 20260219115019_mCAdi | KR0002 | 2026-02-21T14:11:47.229Z | 2026-02-28T14:43:55.830Z |
| 9356365 | 9356365 | 20260219115019_mCAdi | KR000A | 2026-02-21T14:11:47.229Z | 2026-02-28T14:43:55.830Z |
| 9356366 | 9356366 | 20260219115019_mCAdi | KR000D | 2026-02-21T14:11:47.229Z | 2026-02-28T14:43:55.830Z |
| 9356367 | 9356367 | 20260219115019_mCAdi | KR000J | 2026-02-21T14:11:47.229Z | 2026-02-28T14:43:55.830Z |
| 9356368 | 9356368 | 20260219115019_mCAdi | KR000L | 2026-02-21T14:11:47.229Z | 2026-02-28T14:43:55.830Z |
| 9356369 | 9356369 | 20260219115019_mCAdi | KR0010 | 2026-02-21T14:11:47.229Z | 2026-02-28T14:43:55.830Z |
| 9356370 | 9356370 | 20260219115019_mCAdi | KR0015 | 2026-02-21T14:11:47.229Z | 2026-02-28T14:43:55.830Z |
| 9356371 | 9356371 | 20260219115019_mCAdi | KR001B | 2026-02-21T14:11:47.229Z | 2026-02-28T14:43:55.830Z |
| 9356372 | 9356372 | 20260219115019_mCAdi | KR0022 | 2026-02-21T14:11:47.229Z | 2026-02-28T14:43:55.830Z |
| 9356373 | 9356373 | 20260219115019_mCAdi | KR0023 | 2026-02-21T14:11:47.229Z | 2026-02-28T14:43:55.830Z |
| 9356374 | 9356374 | 20260219115019_mCAdi | KR0036 | 2026-02-21T14:11:47.229Z | 2026-02-28T14:43:55.831Z |
| 9356375 | 9356375 | 20260219115019_mCAdi | KR003T | 2026-02-21T14:11:47.229Z | 2026-02-28T14:43:55.831Z |
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);