participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20260319152820_QlaMj" 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 |
|---|---|---|---|---|---|
| 9540374 | 9540374 | 20260319152820_QlaMj | KR000G | 2026-03-21T12:26:55.789Z | 2026-03-27T12:42:20.808Z |
| 9540375 | 9540375 | 20260319152820_QlaMj | KR000R | 2026-03-21T12:26:55.789Z | 2026-03-27T12:42:20.808Z |
| 9540376 | 9540376 | 20260319152820_QlaMj | KR000S | 2026-03-21T12:26:55.789Z | 2026-03-27T12:42:20.808Z |
| 9540377 | 9540377 | 20260319152820_QlaMj | KR0011 | 2026-03-21T12:26:55.789Z | 2026-03-27T12:42:20.808Z |
| 9540378 | 9540378 | 20260319152820_QlaMj | KR001C | 2026-03-21T12:26:55.789Z | 2026-03-27T12:42:20.808Z |
| 9540379 | 9540379 | 20260319152820_QlaMj | KR0022 | 2026-03-21T12:26:55.789Z | 2026-03-27T12:42:20.809Z |
| 9540380 | 9540380 | 20260319152820_QlaMj | KR002E | 2026-03-21T12:26:55.789Z | 2026-03-27T12:42:20.809Z |
| 9540381 | 9540381 | 20260319152820_QlaMj | KR002J | 2026-03-21T12:26:55.789Z | 2026-03-27T12:42:20.809Z |
| 9540382 | 9540382 | 20260319152820_QlaMj | KR0037 | 2026-03-21T12:26:55.789Z | 2026-03-27T12:42:20.809Z |
| 9540383 | 9540383 | 20260319152820_QlaMj | KR003N | 2026-03-21T12:26:55.789Z | 2026-03-27T12:42:20.809Z |
| 9540384 | 9540384 | 20260319152820_QlaMj | KR003U | 2026-03-21T12:26:55.789Z | 2026-03-27T12:42:20.809Z |
| 9540385 | 9540385 | 20260319152820_QlaMj | KR003X | 2026-03-21T12:26:55.789Z | 2026-03-27T12:42:20.809Z |
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);