participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20260322030255_V68ZC" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, updated_at, created_at (date), updated_at (date)
| Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
|---|---|---|---|---|---|
| 9554382 | 9554382 | 20260322030255_V68ZC | UK007P | 2026-03-23T12:02:28.917Z | 2026-03-30T12:28:03.037Z |
| 9554383 | 9554383 | 20260322030255_V68ZC | UK0083 | 2026-03-23T12:02:28.917Z | 2026-03-30T12:28:03.037Z |
| 9554384 | 9554384 | 20260322030255_V68ZC | UK009P | 2026-03-23T12:02:28.917Z | 2026-03-30T12:28:03.038Z |
| 9554385 | 9554385 | 20260322030255_V68ZC | UK00AE | 2026-03-23T12:02:28.917Z | 2026-03-30T12:28:03.038Z |
| 9554386 | 9554386 | 20260322030255_V68ZC | UK00B0 | 2026-03-23T12:02:28.917Z | 2026-03-30T12:28:03.038Z |
| 9554387 | 9554387 | 20260322030255_V68ZC | UK00C1 | 2026-03-23T12:02:28.917Z | 2026-03-30T12:28:03.038Z |
| 9554388 | 9554388 | 20260322030255_V68ZC | UK00DA | 2026-03-23T12:02:28.917Z | 2026-03-30T12:28:03.038Z |
| 9554376 | 9554376 | 20260322030255_V68ZC | UK001L | 2026-03-23T12:02:28.916Z | 2026-03-30T12:28:03.037Z |
| 9554377 | 9554377 | 20260322030255_V68ZC | UK0030 | 2026-03-23T12:02:28.916Z | 2026-03-30T12:28:03.037Z |
| 9554378 | 9554378 | 20260322030255_V68ZC | UK0031 | 2026-03-23T12:02:28.916Z | 2026-03-30T12:28:03.037Z |
| 9554379 | 9554379 | 20260322030255_V68ZC | UK003F | 2026-03-23T12:02:28.916Z | 2026-03-30T12:28:03.037Z |
| 9554380 | 9554380 | 20260322030255_V68ZC | UK003U | 2026-03-23T12:02:28.916Z | 2026-03-30T12:28:03.037Z |
| 9554381 | 9554381 | 20260322030255_V68ZC | UK007A | 2026-03-23T12:02:28.916Z | 2026-03-30T12:28:03.037Z |
| 9554375 | 9554375 | 20260322030255_V68ZC | UK000Z | 2026-03-23T12:02:28.880Z | 2026-03-30T12:28:03.037Z |
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);