participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20260314230857_WxPFb" 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 |
|---|---|---|---|---|---|
| 9483708 | 9483708 | 20260314230857_WxPFb | UK00BC | 2026-03-16T12:00:29.591Z | 2026-03-23T12:21:43.733Z |
| 9483709 | 9483709 | 20260314230857_WxPFb | UK00BH | 2026-03-16T12:00:29.591Z | 2026-03-23T12:21:43.733Z |
| 9483706 | 9483706 | 20260314230857_WxPFb | UK006D | 2026-03-16T12:00:29.588Z | 2026-03-23T12:21:43.733Z |
| 9483707 | 9483707 | 20260314230857_WxPFb | UK009L | 2026-03-16T12:00:29.588Z | 2026-03-23T12:21:43.733Z |
| 9483705 | 9483705 | 20260314230857_WxPFb | UK004C | 2026-03-16T12:00:29.582Z | 2026-03-23T12:21:43.733Z |
| 9483703 | 9483703 | 20260314230857_WxPFb | UK0041 | 2026-03-16T12:00:29.568Z | 2026-03-23T12:21:43.733Z |
| 9483704 | 9483704 | 20260314230857_WxPFb | UK0045 | 2026-03-16T12:00:29.568Z | 2026-03-23T12:21:43.733Z |
| 9483702 | 9483702 | 20260314230857_WxPFb | UK0034 | 2026-03-16T12:00:29.549Z | 2026-03-23T12:21:43.733Z |
| 9483700 | 9483700 | 20260314230857_WxPFb | UK000F | 2026-03-16T12:00:29.531Z | 2026-03-23T12:21:43.733Z |
| 9483701 | 9483701 | 20260314230857_WxPFb | UK002F | 2026-03-16T12:00:29.531Z | 2026-03-23T12:21:43.733Z |
| 9483699 | 9483699 | 20260314230857_WxPFb | UK0004 | 2026-03-16T12:00:29.521Z | 2026-03-23T12:21:43.733Z |
| 9483698 | 9483698 | 20260314230857_WxPFb | NL000M | 2026-03-16T12:00:29.510Z | 2026-03-23T12:21:43.733Z |
| 9483697 | 9483697 | 20260314230857_WxPFb | BE0009 | 2026-03-16T12:00:29.488Z | 2026-03-23T12:21:43.733Z |
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);