participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
9 rows where meteor_unique_trajectory_identifier = "20260317231739_tyh7C" 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 |
|---|---|---|---|---|---|
| 9507552 | 9507552 | 20260317231739_tyh7C | UK004J | 2026-03-19T12:00:30.885Z | 2026-03-26T12:36:40.647Z |
| 9507553 | 9507553 | 20260317231739_tyh7C | UK00CJ | 2026-03-19T12:00:30.885Z | 2026-03-26T12:36:40.647Z |
| 9507551 | 9507551 | 20260317231739_tyh7C | NL0001 | 2026-03-19T12:00:30.875Z | 2026-03-26T12:36:40.647Z |
| 9507550 | 9507550 | 20260317231739_tyh7C | FR000Y | 2026-03-19T12:00:30.863Z | 2026-03-26T12:36:40.647Z |
| 9507549 | 9507549 | 20260317231739_tyh7C | BE0017 | 2026-03-19T12:00:30.858Z | 2026-03-26T12:36:40.647Z |
| 9507548 | 9507548 | 20260317231739_tyh7C | BE000L | 2026-03-19T12:00:30.850Z | 2026-03-26T12:36:40.647Z |
| 9507547 | 9507547 | 20260317231739_tyh7C | BE000K | 2026-03-19T12:00:30.831Z | 2026-03-26T12:36:40.647Z |
| 9507546 | 9507546 | 20260317231739_tyh7C | BE000D | 2026-03-19T12:00:30.811Z | 2026-03-26T12:36:40.647Z |
| 9507545 | 9507545 | 20260317231739_tyh7C | BE0005 | 2026-03-19T12:00:30.784Z | 2026-03-26T12:36:40.647Z |
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);