participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
15 rows where meteor_unique_trajectory_identifier = "20260225180053_m3Y6C" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
| Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
|---|---|---|---|---|---|
| 9396029 | 9396029 | 20260225180053_m3Y6C | KR0004 | 2026-02-26T14:22:43.894Z | 2026-03-05T14:38:24.931Z |
| 9396030 | 9396030 | 20260225180053_m3Y6C | KR000D | 2026-02-26T14:22:43.894Z | 2026-03-05T14:38:24.931Z |
| 9396031 | 9396031 | 20260225180053_m3Y6C | KR000J | 2026-02-26T14:22:43.894Z | 2026-03-05T14:38:24.931Z |
| 9396032 | 9396032 | 20260225180053_m3Y6C | KR000L | 2026-02-26T14:22:43.894Z | 2026-03-05T14:38:24.931Z |
| 9396033 | 9396033 | 20260225180053_m3Y6C | KR0010 | 2026-02-26T14:22:43.894Z | 2026-03-05T14:38:24.931Z |
| 9396034 | 9396034 | 20260225180053_m3Y6C | KR0018 | 2026-02-26T14:22:43.894Z | 2026-03-05T14:38:24.931Z |
| 9396035 | 9396035 | 20260225180053_m3Y6C | KR001B | 2026-02-26T14:22:43.894Z | 2026-03-05T14:38:24.931Z |
| 9396036 | 9396036 | 20260225180053_m3Y6C | KR001K | 2026-02-26T14:22:43.894Z | 2026-03-05T14:38:24.931Z |
| 9396037 | 9396037 | 20260225180053_m3Y6C | KR0022 | 2026-02-26T14:22:43.894Z | 2026-03-05T14:38:24.931Z |
| 9396038 | 9396038 | 20260225180053_m3Y6C | KR0027 | 2026-02-26T14:22:43.894Z | 2026-03-05T14:38:24.931Z |
| 9396039 | 9396039 | 20260225180053_m3Y6C | KR0028 | 2026-02-26T14:22:43.894Z | 2026-03-05T14:38:24.931Z |
| 9396040 | 9396040 | 20260225180053_m3Y6C | KR002P | 2026-02-26T14:22:43.894Z | 2026-03-05T14:38:24.931Z |
| 9396041 | 9396041 | 20260225180053_m3Y6C | KR0036 | 2026-02-26T14:22:43.894Z | 2026-03-05T14:38:24.931Z |
| 9396042 | 9396042 | 20260225180053_m3Y6C | KR0037 | 2026-02-26T14:22:43.894Z | 2026-03-05T14:38:24.931Z |
| 9396043 | 9396043 | 20260225180053_m3Y6C | KR003T | 2026-02-26T14:22:43.894Z | 2026-03-05T14:38:24.931Z |
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);