participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
6 rows where meteor_unique_trajectory_identifier = "20260308120557_rGxTF" 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 |
|---|---|---|---|---|---|
| 9443957 | 9443957 | 20260308120557_rGxTF | KR002H | 2026-03-09T12:09:31.551Z | 2026-03-16T12:44:21.311Z |
| 9443956 | 9443956 | 20260308120557_rGxTF | KR0027 | 2026-03-09T12:09:31.550Z | 2026-03-16T12:44:21.311Z |
| 9443955 | 9443955 | 20260308120557_rGxTF | KR0025 | 2026-03-09T12:09:31.533Z | 2026-03-16T12:44:21.311Z |
| 9443954 | 9443954 | 20260308120557_rGxTF | KR001X | 2026-03-09T12:09:31.525Z | 2026-03-16T12:44:21.311Z |
| 9443953 | 9443953 | 20260308120557_rGxTF | KR0017 | 2026-03-09T12:09:31.508Z | 2026-03-16T12:44:21.311Z |
| 9443952 | 9443952 | 20260308120557_rGxTF | KR0004 | 2026-03-09T12:09:31.501Z | 2026-03-16T12:44:21.310Z |
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);