participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20260322043915_EWkl0" 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 |
|---|---|---|---|---|---|
| 9555303 | 9555303 | 20260322043915_EWkl0 | UK0009 | 2026-03-23T12:03:20.005Z | 2026-03-30T12:28:24.626Z |
| 9555304 | 9555304 | 20260322043915_EWkl0 | UK000H | 2026-03-23T12:03:20.005Z | 2026-03-30T12:28:24.626Z |
| 9555305 | 9555305 | 20260322043915_EWkl0 | UK0022 | 2026-03-23T12:03:20.005Z | 2026-03-30T12:28:24.626Z |
| 9555306 | 9555306 | 20260322043915_EWkl0 | UK002J | 2026-03-23T12:03:20.005Z | 2026-03-30T12:28:24.626Z |
| 9555307 | 9555307 | 20260322043915_EWkl0 | UK006H | 2026-03-23T12:03:20.005Z | 2026-03-30T12:28:24.626Z |
| 9555308 | 9555308 | 20260322043915_EWkl0 | UK00A2 | 2026-03-23T12:03:20.005Z | 2026-03-30T12:28:24.626Z |
| 9555309 | 9555309 | 20260322043915_EWkl0 | UK00A6 | 2026-03-23T12:03:20.005Z | 2026-03-30T12:28:24.626Z |
| 9555310 | 9555310 | 20260322043915_EWkl0 | UK00AB | 2026-03-23T12:03:20.005Z | 2026-03-30T12:28:24.626Z |
| 9555311 | 9555311 | 20260322043915_EWkl0 | UK00B5 | 2026-03-23T12:03:20.005Z | 2026-03-30T12:28:24.626Z |
| 9555312 | 9555312 | 20260322043915_EWkl0 | UK00CE | 2026-03-23T12:03:20.005Z | 2026-03-30T12:28:24.626Z |
| 9555313 | 9555313 | 20260322043915_EWkl0 | UK00CZ | 2026-03-23T12:03:20.005Z | 2026-03-30T12:28:24.626Z |
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);