participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20251227003743_jW2Tj" 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 |
|---|---|---|---|---|---|
| 9092375 | 9092375 | 20251227003743_jW2Tj | UK00DG | 2025-12-30T14:58:21.527Z | 2026-01-04T15:25:14.872Z |
| 9092373 | 9092373 | 20251227003743_jW2Tj | UK00B0 | 2025-12-30T14:58:21.525Z | 2026-01-04T15:25:14.872Z |
| 9092374 | 9092374 | 20251227003743_jW2Tj | UK00BF | 2025-12-30T14:58:21.525Z | 2026-01-04T15:25:14.872Z |
| 9092372 | 9092372 | 20251227003743_jW2Tj | UK00AT | 2025-12-30T14:58:21.522Z | 2026-01-04T15:25:14.872Z |
| 9092367 | 9092367 | 20251227003743_jW2Tj | UK006A | 2025-12-30T14:58:21.511Z | 2026-01-04T15:25:14.872Z |
| 9092368 | 9092368 | 20251227003743_jW2Tj | UK0070 | 2025-12-30T14:58:21.511Z | 2026-01-04T15:25:14.872Z |
| 9092369 | 9092369 | 20251227003743_jW2Tj | UK008B | 2025-12-30T14:58:21.511Z | 2026-01-04T15:25:14.872Z |
| 9092370 | 9092370 | 20251227003743_jW2Tj | UK008J | 2025-12-30T14:58:21.511Z | 2026-01-04T15:25:14.872Z |
| 9092371 | 9092371 | 20251227003743_jW2Tj | UK0098 | 2025-12-30T14:58:21.511Z | 2026-01-04T15:25:14.872Z |
| 9092365 | 9092365 | 20251227003743_jW2Tj | UK0042 | 2025-12-30T14:58:21.493Z | 2026-01-04T15:25:14.872Z |
| 9092366 | 9092366 | 20251227003743_jW2Tj | UK004N | 2025-12-30T14:58:21.493Z | 2026-01-04T15:25:14.872Z |
| 9092364 | 9092364 | 20251227003743_jW2Tj | UK003B | 2025-12-30T14:58:21.492Z | 2026-01-04T15:25:14.872Z |
| 9092362 | 9092362 | 20251227003743_jW2Tj | UK001L | 2025-12-30T14:58:21.460Z | 2026-01-04T15:25:14.872Z |
| 9092363 | 9092363 | 20251227003743_jW2Tj | UK0035 | 2025-12-30T14:58:21.460Z | 2026-01-04T15:25:14.872Z |
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);