participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20260223013515_4XgYd" 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 |
|---|---|---|---|---|---|
| 9372950 | 9372950 | 20260223013515_4XgYd | UK00B0 | 2026-02-24T14:01:46.382Z | 2026-03-03T14:30:49.043Z |
| 9372951 | 9372951 | 20260223013515_4XgYd | UK00DB | 2026-02-24T14:01:46.382Z | 2026-03-03T14:30:49.043Z |
| 9372943 | 9372943 | 20260223013515_4XgYd | UK006L | 2026-02-24T14:01:46.381Z | 2026-03-03T14:30:49.043Z |
| 9372944 | 9372944 | 20260223013515_4XgYd | UK0070 | 2026-02-24T14:01:46.381Z | 2026-03-03T14:30:49.043Z |
| 9372945 | 9372945 | 20260223013515_4XgYd | UK007A | 2026-02-24T14:01:46.381Z | 2026-03-03T14:30:49.043Z |
| 9372946 | 9372946 | 20260223013515_4XgYd | UK008J | 2026-02-24T14:01:46.381Z | 2026-03-03T14:30:49.043Z |
| 9372947 | 9372947 | 20260223013515_4XgYd | UK0098 | 2026-02-24T14:01:46.381Z | 2026-03-03T14:30:49.043Z |
| 9372948 | 9372948 | 20260223013515_4XgYd | UK009P | 2026-02-24T14:01:46.381Z | 2026-03-03T14:30:49.043Z |
| 9372949 | 9372949 | 20260223013515_4XgYd | UK00AE | 2026-02-24T14:01:46.381Z | 2026-03-03T14:30:49.043Z |
| 9372939 | 9372939 | 20260223013515_4XgYd | UK001L | 2026-02-24T14:01:46.347Z | 2026-03-03T14:30:49.043Z |
| 9372940 | 9372940 | 20260223013515_4XgYd | UK0035 | 2026-02-24T14:01:46.347Z | 2026-03-03T14:30:49.043Z |
| 9372941 | 9372941 | 20260223013515_4XgYd | UK004D | 2026-02-24T14:01:46.347Z | 2026-03-03T14:30:49.043Z |
| 9372942 | 9372942 | 20260223013515_4XgYd | UK005L | 2026-02-24T14:01:46.347Z | 2026-03-03T14:30:49.043Z |
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);