participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
15 rows where meteor_unique_trajectory_identifier = "20260225000052_71r1P" 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 |
|---|---|---|---|---|---|
| 9390230 | 9390230 | 20260225000052_71r1P | UK00DN | 2026-02-26T14:00:49.643Z | 2026-03-05T14:35:35.552Z |
| 9390227 | 9390227 | 20260225000052_71r1P | UK00C7 | 2026-02-26T14:00:49.642Z | 2026-03-05T14:35:35.552Z |
| 9390228 | 9390228 | 20260225000052_71r1P | UK00DH | 2026-02-26T14:00:49.642Z | 2026-03-05T14:35:35.552Z |
| 9390229 | 9390229 | 20260225000052_71r1P | UK00DL | 2026-02-26T14:00:49.642Z | 2026-03-05T14:35:35.552Z |
| 9390225 | 9390225 | 20260225000052_71r1P | UK00AK | 2026-02-26T14:00:49.629Z | 2026-03-05T14:35:35.552Z |
| 9390226 | 9390226 | 20260225000052_71r1P | UK00B5 | 2026-02-26T14:00:49.629Z | 2026-03-05T14:35:35.552Z |
| 9390222 | 9390222 | 20260225000052_71r1P | UK009S | 2026-02-26T14:00:49.619Z | 2026-03-05T14:35:35.552Z |
| 9390223 | 9390223 | 20260225000052_71r1P | UK00A6 | 2026-02-26T14:00:49.619Z | 2026-03-05T14:35:35.552Z |
| 9390224 | 9390224 | 20260225000052_71r1P | UK00AB | 2026-02-26T14:00:49.619Z | 2026-03-05T14:35:35.552Z |
| 9390221 | 9390221 | 20260225000052_71r1P | UK008Q | 2026-02-26T14:00:49.604Z | 2026-03-05T14:35:35.552Z |
| 9390220 | 9390220 | 20260225000052_71r1P | UK008D | 2026-02-26T14:00:49.589Z | 2026-03-05T14:35:35.552Z |
| 9390217 | 9390217 | 20260225000052_71r1P | UK002Q | 2026-02-26T14:00:49.578Z | 2026-03-05T14:35:35.552Z |
| 9390218 | 9390218 | 20260225000052_71r1P | UK004F | 2026-02-26T14:00:49.578Z | 2026-03-05T14:35:35.552Z |
| 9390219 | 9390219 | 20260225000052_71r1P | UK007V | 2026-02-26T14:00:49.578Z | 2026-03-05T14:35:35.552Z |
| 9390216 | 9390216 | 20260225000052_71r1P | UK002J | 2026-02-26T14:00:49.544Z | 2026-03-05T14:35:35.552Z |
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);