participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20260322000602_uRgGb" 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 |
|---|---|---|---|---|---|
| 9552426 | 9552426 | 20260322000602_uRgGb | UK0086 | 2026-03-23T12:00:23.838Z | 2026-03-30T12:27:23.926Z |
| 9552427 | 9552427 | 20260322000602_uRgGb | UK008F | 2026-03-23T12:00:23.838Z | 2026-03-30T12:27:23.926Z |
| 9552428 | 9552428 | 20260322000602_uRgGb | UK0098 | 2026-03-23T12:00:23.838Z | 2026-03-30T12:27:23.926Z |
| 9552429 | 9552429 | 20260322000602_uRgGb | UK00A4 | 2026-03-23T12:00:23.838Z | 2026-03-30T12:27:23.926Z |
| 9552430 | 9552430 | 20260322000602_uRgGb | UK00AN | 2026-03-23T12:00:23.838Z | 2026-03-30T12:27:23.926Z |
| 9552431 | 9552431 | 20260322000602_uRgGb | UK00AT | 2026-03-23T12:00:23.838Z | 2026-03-30T12:27:23.926Z |
| 9552432 | 9552432 | 20260322000602_uRgGb | UK00BF | 2026-03-23T12:00:23.838Z | 2026-03-30T12:27:23.926Z |
| 9552433 | 9552433 | 20260322000602_uRgGb | UK00C2 | 2026-03-23T12:00:23.838Z | 2026-03-30T12:27:23.926Z |
| 9552434 | 9552434 | 20260322000602_uRgGb | UK00CC | 2026-03-23T12:00:23.838Z | 2026-03-30T12:27:23.926Z |
| 9552425 | 9552425 | 20260322000602_uRgGb | UK006L | 2026-03-23T12:00:23.824Z | 2026-03-30T12:27:23.926Z |
| 9552424 | 9552424 | 20260322000602_uRgGb | UK005M | 2026-03-23T12:00:23.808Z | 2026-03-30T12:27:23.926Z |
| 9552423 | 9552423 | 20260322000602_uRgGb | UK0041 | 2026-03-23T12:00:23.794Z | 2026-03-30T12:27:23.926Z |
| 9552422 | 9552422 | 20260322000602_uRgGb | UK003X | 2026-03-23T12:00:23.786Z | 2026-03-30T12:27:23.926Z |
| 9552421 | 9552421 | 20260322000602_uRgGb | UK0035 | 2026-03-23T12:00:23.773Z | 2026-03-30T12:27:23.926Z |
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);