participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20260322033229_du2kq" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
| Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
|---|---|---|---|---|---|
| 9554717 | 9554717 | 20260322033229_du2kq | UK0001 | 2026-03-23T12:02:48.284Z | 2026-03-30T12:28:08.009Z |
| 9554718 | 9554718 | 20260322033229_du2kq | UK000S | 2026-03-23T12:02:48.284Z | 2026-03-30T12:28:08.009Z |
| 9554719 | 9554719 | 20260322033229_du2kq | UK003D | 2026-03-23T12:02:48.284Z | 2026-03-30T12:28:08.009Z |
| 9554720 | 9554720 | 20260322033229_du2kq | UK003X | 2026-03-23T12:02:48.284Z | 2026-03-30T12:28:08.009Z |
| 9554721 | 9554721 | 20260322033229_du2kq | UK0049 | 2026-03-23T12:02:48.284Z | 2026-03-30T12:28:08.009Z |
| 9554722 | 9554722 | 20260322033229_du2kq | UK007B | 2026-03-23T12:02:48.284Z | 2026-03-30T12:28:08.009Z |
| 9554723 | 9554723 | 20260322033229_du2kq | UK007C | 2026-03-23T12:02:48.284Z | 2026-03-30T12:28:08.009Z |
| 9554724 | 9554724 | 20260322033229_du2kq | UK007R | 2026-03-23T12:02:48.284Z | 2026-03-30T12:28:08.009Z |
| 9554725 | 9554725 | 20260322033229_du2kq | UK007V | 2026-03-23T12:02:48.284Z | 2026-03-30T12:28:08.009Z |
| 9554726 | 9554726 | 20260322033229_du2kq | UK008B | 2026-03-23T12:02:48.284Z | 2026-03-30T12:28:08.009Z |
| 9554727 | 9554727 | 20260322033229_du2kq | UK009V | 2026-03-23T12:02:48.284Z | 2026-03-30T12:28:08.009Z |
| 9554728 | 9554728 | 20260322033229_du2kq | UK00A5 | 2026-03-23T12:02:48.284Z | 2026-03-30T12:28:08.009Z |
| 9554729 | 9554729 | 20260322033229_du2kq | UK00AE | 2026-03-23T12:02:48.284Z | 2026-03-30T12:28:08.009Z |
| 9554730 | 9554730 | 20260322033229_du2kq | UK00B1 | 2026-03-23T12:02:48.284Z | 2026-03-30T12:28:08.009Z |
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);