participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
10 rows where meteor_unique_trajectory_identifier = "20260223021329_Sy22b" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, created_at (date), updated_at (date)
| Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
|---|---|---|---|---|---|
| 9373122 | 9373122 | 20260223021329_Sy22b | UK00A2 | 2026-02-24T14:02:14.806Z | 2026-03-03T14:30:52.321Z |
| 9373123 | 9373123 | 20260223021329_Sy22b | UK00CZ | 2026-02-24T14:02:14.806Z | 2026-03-03T14:30:52.321Z |
| 9373114 | 9373114 | 20260223021329_Sy22b | UK000H | 2026-02-24T14:02:14.805Z | 2026-03-03T14:30:52.321Z |
| 9373115 | 9373115 | 20260223021329_Sy22b | UK001S | 2026-02-24T14:02:14.805Z | 2026-03-03T14:30:52.321Z |
| 9373116 | 9373116 | 20260223021329_Sy22b | UK0024 | 2026-02-24T14:02:14.805Z | 2026-03-03T14:30:52.321Z |
| 9373117 | 9373117 | 20260223021329_Sy22b | UK003Z | 2026-02-24T14:02:14.805Z | 2026-03-03T14:30:52.321Z |
| 9373118 | 9373118 | 20260223021329_Sy22b | UK007Q | 2026-02-24T14:02:14.805Z | 2026-03-03T14:30:52.321Z |
| 9373119 | 9373119 | 20260223021329_Sy22b | UK008D | 2026-02-24T14:02:14.805Z | 2026-03-03T14:30:52.321Z |
| 9373120 | 9373120 | 20260223021329_Sy22b | UK009K | 2026-02-24T14:02:14.805Z | 2026-03-03T14:30:52.321Z |
| 9373121 | 9373121 | 20260223021329_Sy22b | UK009W | 2026-02-24T14:02:14.805Z | 2026-03-03T14:30:52.321Z |
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);