participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20260329015645_kLQ4f" 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 |
|---|---|---|---|---|---|
| 9592357 | 9592357 | 20260329015645_kLQ4f | UK00B2 | 2026-03-30T12:00:46.455Z | 2026-04-06T12:34:02.062Z |
| 9592358 | 9592358 | 20260329015645_kLQ4f | UK00BA | 2026-03-30T12:00:46.455Z | 2026-04-06T12:34:02.062Z |
| 9592359 | 9592359 | 20260329015645_kLQ4f | UK00DN | 2026-03-30T12:00:46.455Z | 2026-04-06T12:34:02.062Z |
| 9592356 | 9592356 | 20260329015645_kLQ4f | UK00AE | 2026-03-30T12:00:46.454Z | 2026-04-06T12:34:02.062Z |
| 9592355 | 9592355 | 20260329015645_kLQ4f | UK009W | 2026-03-30T12:00:46.440Z | 2026-04-06T12:34:02.062Z |
| 9592354 | 9592354 | 20260329015645_kLQ4f | UK009G | 2026-03-30T12:00:46.423Z | 2026-04-06T12:34:02.062Z |
| 9592353 | 9592353 | 20260329015645_kLQ4f | UK007R | 2026-03-30T12:00:46.419Z | 2026-04-06T12:34:02.062Z |
| 9592352 | 9592352 | 20260329015645_kLQ4f | UK007P | 2026-03-30T12:00:46.396Z | 2026-04-06T12:34:02.062Z |
| 9592351 | 9592351 | 20260329015645_kLQ4f | UK0049 | 2026-03-30T12:00:46.384Z | 2026-04-06T12:34:02.062Z |
| 9592350 | 9592350 | 20260329015645_kLQ4f | UK0031 | 2026-03-30T12:00:46.368Z | 2026-04-06T12:34:02.062Z |
| 9592349 | 9592349 | 20260329015645_kLQ4f | UK000S | 2026-03-30T12:00:46.338Z | 2026-04-06T12:34:02.062Z |
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);