participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20260322033455_L3FIy" 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 |
|---|---|---|---|---|---|
| 9554786 | 9554786 | 20260322033455_L3FIy | UK0006 | 2026-03-23T12:02:51.131Z | 2026-03-30T12:28:08.968Z |
| 9554787 | 9554787 | 20260322033455_L3FIy | UK000T | 2026-03-23T12:02:51.131Z | 2026-03-30T12:28:08.968Z |
| 9554788 | 9554788 | 20260322033455_L3FIy | UK0024 | 2026-03-23T12:02:51.131Z | 2026-03-30T12:28:08.968Z |
| 9554789 | 9554789 | 20260322033455_L3FIy | UK003E | 2026-03-23T12:02:51.131Z | 2026-03-30T12:28:08.968Z |
| 9554790 | 9554790 | 20260322033455_L3FIy | UK0051 | 2026-03-23T12:02:51.131Z | 2026-03-30T12:28:08.968Z |
| 9554791 | 9554791 | 20260322033455_L3FIy | UK007Q | 2026-03-23T12:02:51.131Z | 2026-03-30T12:28:08.968Z |
| 9554792 | 9554792 | 20260322033455_L3FIy | UK008V | 2026-03-23T12:02:51.131Z | 2026-03-30T12:28:08.968Z |
| 9554793 | 9554793 | 20260322033455_L3FIy | UK008X | 2026-03-23T12:02:51.131Z | 2026-03-30T12:28:08.968Z |
| 9554794 | 9554794 | 20260322033455_L3FIy | UK009S | 2026-03-23T12:02:51.131Z | 2026-03-30T12:28:08.968Z |
| 9554795 | 9554795 | 20260322033455_L3FIy | UK00AU | 2026-03-23T12:02:51.131Z | 2026-03-30T12:28:08.968Z |
| 9554796 | 9554796 | 20260322033455_L3FIy | UK00BK | 2026-03-23T12:02:51.131Z | 2026-03-30T12:28:08.968Z |
| 9554797 | 9554797 | 20260322033455_L3FIy | UK00DH | 2026-03-23T12:02:51.131Z | 2026-03-30T12:28:08.968Z |
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);