participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20260405013056_y8Lu7" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, updated_at, created_at (date), updated_at (date)
| Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
|---|---|---|---|---|---|
| 9611350 | 9611350 | 20260405013056_y8Lu7 | UK00DJ | 2026-04-06T12:14:04.054Z | 2026-04-07T12:16:05.041Z |
| 9611346 | 9611346 | 20260405013056_y8Lu7 | UK006P | 2026-04-06T12:14:04.053Z | 2026-04-07T12:16:05.041Z |
| 9611347 | 9611347 | 20260405013056_y8Lu7 | UK007Y | 2026-04-06T12:14:04.053Z | 2026-04-07T12:16:05.041Z |
| 9611348 | 9611348 | 20260405013056_y8Lu7 | UK00AM | 2026-04-06T12:14:04.053Z | 2026-04-07T12:16:05.041Z |
| 9611349 | 9611349 | 20260405013056_y8Lu7 | UK00CU | 2026-04-06T12:14:04.053Z | 2026-04-07T12:16:05.041Z |
| 9611340 | 9611340 | 20260405013056_y8Lu7 | UK0008 | 2026-04-06T12:14:04.032Z | 2026-04-07T12:16:05.040Z |
| 9611341 | 9611341 | 20260405013056_y8Lu7 | UK002K | 2026-04-06T12:14:04.032Z | 2026-04-07T12:16:05.040Z |
| 9611342 | 9611342 | 20260405013056_y8Lu7 | UK004B | 2026-04-06T12:14:04.032Z | 2026-04-07T12:16:05.040Z |
| 9611343 | 9611343 | 20260405013056_y8Lu7 | UK005C | 2026-04-06T12:14:04.032Z | 2026-04-07T12:16:05.040Z |
| 9611344 | 9611344 | 20260405013056_y8Lu7 | UK006C | 2026-04-06T12:14:04.032Z | 2026-04-07T12:16:05.040Z |
| 9611345 | 9611345 | 20260405013056_y8Lu7 | UK006G | 2026-04-06T12:14:04.032Z | 2026-04-07T12:16:05.040Z |
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);