participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20260319004034_xSj6m" 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 |
|---|---|---|---|---|---|
| 9518188 | 9518188 | 20260319004034_xSj6m | NL000M | 2026-03-20T12:02:05.929Z | 2026-03-27T12:40:07.339Z |
| 9518189 | 9518189 | 20260319004034_xSj6m | UK0026 | 2026-03-20T12:02:05.929Z | 2026-03-27T12:40:07.339Z |
| 9518190 | 9518190 | 20260319004034_xSj6m | UK002F | 2026-03-20T12:02:05.929Z | 2026-03-27T12:40:07.339Z |
| 9518191 | 9518191 | 20260319004034_xSj6m | UK0034 | 2026-03-20T12:02:05.929Z | 2026-03-27T12:40:07.339Z |
| 9518192 | 9518192 | 20260319004034_xSj6m | UK0041 | 2026-03-20T12:02:05.929Z | 2026-03-27T12:40:07.339Z |
| 9518193 | 9518193 | 20260319004034_xSj6m | UK004C | 2026-03-20T12:02:05.929Z | 2026-03-27T12:40:07.339Z |
| 9518194 | 9518194 | 20260319004034_xSj6m | UK006U | 2026-03-20T12:02:05.929Z | 2026-03-27T12:40:07.339Z |
| 9518195 | 9518195 | 20260319004034_xSj6m | UK00A4 | 2026-03-20T12:02:05.929Z | 2026-03-27T12:40:07.339Z |
| 9518196 | 9518196 | 20260319004034_xSj6m | UK00AN | 2026-03-20T12:02:05.929Z | 2026-03-27T12:40:07.339Z |
| 9518197 | 9518197 | 20260319004034_xSj6m | UK00B1 | 2026-03-20T12:02:05.929Z | 2026-03-27T12:40:07.339Z |
| 9518198 | 9518198 | 20260319004034_xSj6m | UK00BC | 2026-03-20T12:02:05.929Z | 2026-03-27T12:40:07.339Z |
| 9518199 | 9518199 | 20260319004034_xSj6m | UK00BJ | 2026-03-20T12:02:05.929Z | 2026-03-27T12:40:07.339Z |
| 9518200 | 9518200 | 20260319004034_xSj6m | UK00CJ | 2026-03-20T12:02:05.929Z | 2026-03-27T12:40:07.339Z |
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);