participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20260322010440_AGWP8" 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 |
|---|---|---|---|---|---|
| 9553022 | 9553022 | 20260322010440_AGWP8 | UK00D9 | 2026-03-23T12:01:09.490Z | 2026-03-30T12:27:33.767Z |
| 9553011 | 9553011 | 20260322010440_AGWP8 | UK0031 | 2026-03-23T12:01:09.476Z | 2026-03-30T12:27:33.767Z |
| 9553012 | 9553012 | 20260322010440_AGWP8 | UK003F | 2026-03-23T12:01:09.476Z | 2026-03-30T12:27:33.767Z |
| 9553013 | 9553013 | 20260322010440_AGWP8 | UK0042 | 2026-03-23T12:01:09.476Z | 2026-03-30T12:27:33.767Z |
| 9553014 | 9553014 | 20260322010440_AGWP8 | UK004M | 2026-03-23T12:01:09.476Z | 2026-03-30T12:27:33.767Z |
| 9553015 | 9553015 | 20260322010440_AGWP8 | UK009D | 2026-03-23T12:01:09.476Z | 2026-03-30T12:27:33.767Z |
| 9553016 | 9553016 | 20260322010440_AGWP8 | UK009K | 2026-03-23T12:01:09.476Z | 2026-03-30T12:27:33.767Z |
| 9553017 | 9553017 | 20260322010440_AGWP8 | UK009P | 2026-03-23T12:01:09.476Z | 2026-03-30T12:27:33.767Z |
| 9553018 | 9553018 | 20260322010440_AGWP8 | UK00AJ | 2026-03-23T12:01:09.476Z | 2026-03-30T12:27:33.767Z |
| 9553019 | 9553019 | 20260322010440_AGWP8 | UK00B0 | 2026-03-23T12:01:09.476Z | 2026-03-30T12:27:33.767Z |
| 9553020 | 9553020 | 20260322010440_AGWP8 | UK00BK | 2026-03-23T12:01:09.476Z | 2026-03-30T12:27:33.767Z |
| 9553021 | 9553021 | 20260322010440_AGWP8 | UK00C0 | 2026-03-23T12:01:09.476Z | 2026-03-30T12:27:33.767Z |
| 9553010 | 9553010 | 20260322010440_AGWP8 | UK0030 | 2026-03-23T12:01:09.455Z | 2026-03-30T12:27:33.767Z |
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);