participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20260319023242_IyrT6" 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 |
|---|---|---|---|---|---|
| 9519716 | 9519716 | 20260319023242_IyrT6 | UK000F | 2026-03-20T12:04:59.390Z | 2026-03-27T12:40:34.822Z |
| 9519717 | 9519717 | 20260319023242_IyrT6 | UK002Q | 2026-03-20T12:04:59.390Z | 2026-03-27T12:40:34.822Z |
| 9519718 | 9519718 | 20260319023242_IyrT6 | UK004F | 2026-03-20T12:04:59.390Z | 2026-03-27T12:40:34.822Z |
| 9519719 | 9519719 | 20260319023242_IyrT6 | UK006H | 2026-03-20T12:04:59.390Z | 2026-03-27T12:40:34.822Z |
| 9519720 | 9519720 | 20260319023242_IyrT6 | UK0078 | 2026-03-20T12:04:59.390Z | 2026-03-27T12:40:34.822Z |
| 9519721 | 9519721 | 20260319023242_IyrT6 | UK0079 | 2026-03-20T12:04:59.390Z | 2026-03-27T12:40:34.822Z |
| 9519722 | 9519722 | 20260319023242_IyrT6 | UK007H | 2026-03-20T12:04:59.390Z | 2026-03-27T12:40:34.822Z |
| 9519723 | 9519723 | 20260319023242_IyrT6 | UK008C | 2026-03-20T12:04:59.390Z | 2026-03-27T12:40:34.822Z |
| 9519724 | 9519724 | 20260319023242_IyrT6 | UK008Q | 2026-03-20T12:04:59.390Z | 2026-03-27T12:40:34.822Z |
| 9519725 | 9519725 | 20260319023242_IyrT6 | UK00AB | 2026-03-20T12:04:59.390Z | 2026-03-27T12:40:34.822Z |
| 9519726 | 9519726 | 20260319023242_IyrT6 | UK00AK | 2026-03-20T12:04:59.390Z | 2026-03-27T12:40:34.822Z |
| 9519727 | 9519727 | 20260319023242_IyrT6 | UK00C7 | 2026-03-20T12:04:59.390Z | 2026-03-27T12:40:34.822Z |
| 9519728 | 9519728 | 20260319023242_IyrT6 | UK00CE | 2026-03-20T12:04:59.390Z | 2026-03-27T12:40:34.822Z |
| 9519715 | 9519715 | 20260319023242_IyrT6 | UK0001 | 2026-03-20T12:04:59.389Z | 2026-03-27T12:40:34.821Z |
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);