participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20260316022008_Behsq" 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 |
|---|---|---|---|---|---|
| 9494461 | 9494461 | 20260316022008_Behsq | UK00A4 | 2026-03-17T12:04:00.719Z | 2026-03-24T12:40:47.665Z |
| 9494462 | 9494462 | 20260316022008_Behsq | UK00AN | 2026-03-17T12:04:00.719Z | 2026-03-24T12:40:47.665Z |
| 9494463 | 9494463 | 20260316022008_Behsq | UK00AT | 2026-03-17T12:04:00.719Z | 2026-03-24T12:40:47.665Z |
| 9494464 | 9494464 | 20260316022008_Behsq | UK00BJ | 2026-03-17T12:04:00.719Z | 2026-03-24T12:40:47.665Z |
| 9494465 | 9494465 | 20260316022008_Behsq | UK00CC | 2026-03-17T12:04:00.719Z | 2026-03-24T12:40:47.665Z |
| 9494457 | 9494457 | 20260316022008_Behsq | UK0041 | 2026-03-17T12:04:00.718Z | 2026-03-24T12:40:47.665Z |
| 9494458 | 9494458 | 20260316022008_Behsq | UK005G | 2026-03-17T12:04:00.718Z | 2026-03-24T12:40:47.665Z |
| 9494459 | 9494459 | 20260316022008_Behsq | UK006P | 2026-03-17T12:04:00.718Z | 2026-03-24T12:40:47.665Z |
| 9494460 | 9494460 | 20260316022008_Behsq | UK008F | 2026-03-17T12:04:00.718Z | 2026-03-24T12:40:47.665Z |
| 9494454 | 9494454 | 20260316022008_Behsq | UK002F | 2026-03-17T12:04:00.696Z | 2026-03-24T12:40:47.665Z |
| 9494455 | 9494455 | 20260316022008_Behsq | UK0034 | 2026-03-17T12:04:00.696Z | 2026-03-24T12:40:47.665Z |
| 9494456 | 9494456 | 20260316022008_Behsq | UK0035 | 2026-03-17T12:04:00.696Z | 2026-03-24T12:40:47.665Z |
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);