participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20260329011843_EFND1" 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 |
|---|---|---|---|---|---|
| 9592175 | 9592175 | 20260329011843_EFND1 | UK00CJ | 2026-03-30T12:00:16.482Z | 2026-04-06T12:33:52.323Z |
| 9592174 | 9592174 | 20260329011843_EFND1 | UK00BC | 2026-03-30T12:00:16.468Z | 2026-04-06T12:33:52.323Z |
| 9592173 | 9592173 | 20260329011843_EFND1 | UK00B1 | 2026-03-30T12:00:16.452Z | 2026-04-06T12:33:52.323Z |
| 9592172 | 9592172 | 20260329011843_EFND1 | UK007C | 2026-03-30T12:00:16.435Z | 2026-04-06T12:33:52.323Z |
| 9592170 | 9592170 | 20260329011843_EFND1 | UK004J | 2026-03-30T12:00:16.426Z | 2026-04-06T12:33:52.323Z |
| 9592171 | 9592171 | 20260329011843_EFND1 | UK006G | 2026-03-30T12:00:16.426Z | 2026-04-06T12:33:52.323Z |
| 9592169 | 9592169 | 20260329011843_EFND1 | UK0045 | 2026-03-30T12:00:16.412Z | 2026-04-06T12:33:52.323Z |
| 9592168 | 9592168 | 20260329011843_EFND1 | UK0026 | 2026-03-30T12:00:16.390Z | 2026-04-06T12:33:52.322Z |
| 9592166 | 9592166 | 20260329011843_EFND1 | NL000M | 2026-03-30T12:00:16.379Z | 2026-04-06T12:33:52.322Z |
| 9592167 | 9592167 | 20260329011843_EFND1 | UK000F | 2026-03-30T12:00:16.379Z | 2026-04-06T12:33:52.322Z |
| 9592165 | 9592165 | 20260329011843_EFND1 | FR000Z | 2026-03-30T12:00:16.367Z | 2026-04-06T12:33:52.322Z |
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);