participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
15 rows where meteor_unique_trajectory_identifier = "20260314024059_nmwPJ" 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 |
|---|---|---|---|---|---|
| 9476160 | 9476160 | 20260314024059_nmwPJ | UK00A0 | 2026-03-15T12:05:11.575Z | 2026-03-22T12:41:54.667Z |
| 9476161 | 9476161 | 20260314024059_nmwPJ | UK00A4 | 2026-03-15T12:05:11.575Z | 2026-03-22T12:41:54.667Z |
| 9476162 | 9476162 | 20260314024059_nmwPJ | UK00AN | 2026-03-15T12:05:11.575Z | 2026-03-22T12:41:54.667Z |
| 9476163 | 9476163 | 20260314024059_nmwPJ | UK00AT | 2026-03-15T12:05:11.575Z | 2026-03-22T12:41:54.667Z |
| 9476164 | 9476164 | 20260314024059_nmwPJ | UK00B1 | 2026-03-15T12:05:11.575Z | 2026-03-22T12:41:54.667Z |
| 9476152 | 9476152 | 20260314024059_nmwPJ | UK0035 | 2026-03-15T12:05:11.564Z | 2026-03-22T12:41:54.667Z |
| 9476153 | 9476153 | 20260314024059_nmwPJ | UK0041 | 2026-03-15T12:05:11.564Z | 2026-03-22T12:41:54.667Z |
| 9476154 | 9476154 | 20260314024059_nmwPJ | UK005M | 2026-03-15T12:05:11.564Z | 2026-03-22T12:41:54.667Z |
| 9476155 | 9476155 | 20260314024059_nmwPJ | UK007R | 2026-03-15T12:05:11.564Z | 2026-03-22T12:41:54.667Z |
| 9476156 | 9476156 | 20260314024059_nmwPJ | UK0086 | 2026-03-15T12:05:11.564Z | 2026-03-22T12:41:54.667Z |
| 9476157 | 9476157 | 20260314024059_nmwPJ | UK008F | 2026-03-15T12:05:11.564Z | 2026-03-22T12:41:54.667Z |
| 9476158 | 9476158 | 20260314024059_nmwPJ | UK0098 | 2026-03-15T12:05:11.564Z | 2026-03-22T12:41:54.667Z |
| 9476159 | 9476159 | 20260314024059_nmwPJ | UK009J | 2026-03-15T12:05:11.564Z | 2026-03-22T12:41:54.667Z |
| 9476150 | 9476150 | 20260314024059_nmwPJ | UK002F | 2026-03-15T12:05:11.543Z | 2026-03-22T12:41:54.667Z |
| 9476151 | 9476151 | 20260314024059_nmwPJ | UK0034 | 2026-03-15T12:05:11.543Z | 2026-03-22T12:41:54.667Z |
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);