participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20260223021213_jt886" 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 |
|---|---|---|---|---|---|
| 9373101 | 9373101 | 20260223021213_jt886 | UK0006 | 2026-02-24T14:02:13.299Z | 2026-03-03T14:30:51.362Z |
| 9373102 | 9373102 | 20260223021213_jt886 | UK001M | 2026-02-24T14:02:13.299Z | 2026-03-03T14:30:51.362Z |
| 9373103 | 9373103 | 20260223021213_jt886 | UK001S | 2026-02-24T14:02:13.299Z | 2026-03-03T14:30:51.362Z |
| 9373104 | 9373104 | 20260223021213_jt886 | UK001Z | 2026-02-24T14:02:13.299Z | 2026-03-03T14:30:51.362Z |
| 9373105 | 9373105 | 20260223021213_jt886 | UK0024 | 2026-02-24T14:02:13.299Z | 2026-03-03T14:30:51.362Z |
| 9373106 | 9373106 | 20260223021213_jt886 | UK007A | 2026-02-24T14:02:13.299Z | 2026-03-03T14:30:51.362Z |
| 9373107 | 9373107 | 20260223021213_jt886 | UK007Q | 2026-02-24T14:02:13.299Z | 2026-03-03T14:30:51.362Z |
| 9373108 | 9373108 | 20260223021213_jt886 | UK009K | 2026-02-24T14:02:13.299Z | 2026-03-03T14:30:51.362Z |
| 9373109 | 9373109 | 20260223021213_jt886 | UK009W | 2026-02-24T14:02:13.299Z | 2026-03-03T14:30:51.362Z |
| 9373110 | 9373110 | 20260223021213_jt886 | UK00BK | 2026-02-24T14:02:13.299Z | 2026-03-03T14:30:51.362Z |
| 9373111 | 9373111 | 20260223021213_jt886 | UK00BW | 2026-02-24T14:02:13.299Z | 2026-03-03T14:30:51.362Z |
| 9373100 | 9373100 | 20260223021213_jt886 | UK0002 | 2026-02-24T14:02:13.298Z | 2026-03-03T14:30:51.362Z |
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);