participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20240304001558_wKxXd" 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 |
|---|---|---|---|---|---|
| 4024154 | 4024154 | 20240304001558_wKxXd | UK001L | 2024-03-05T14:05:17.341Z | 2024-03-12T12:15:21.587Z |
| 4024155 | 4024155 | 20240304001558_wKxXd | UK001U | 2024-03-05T14:05:17.341Z | 2024-03-12T12:15:21.587Z |
| 4024156 | 4024156 | 20240304001558_wKxXd | UK002H | 2024-03-05T14:05:17.341Z | 2024-03-12T12:15:21.587Z |
| 4024157 | 4024157 | 20240304001558_wKxXd | UK0030 | 2024-03-05T14:05:17.341Z | 2024-03-12T12:15:21.587Z |
| 4024158 | 4024158 | 20240304001558_wKxXd | UK003U | 2024-03-05T14:05:17.341Z | 2024-03-12T12:15:21.587Z |
| 4024159 | 4024159 | 20240304001558_wKxXd | UK0042 | 2024-03-05T14:05:17.341Z | 2024-03-12T12:15:21.587Z |
| 4024160 | 4024160 | 20240304001558_wKxXd | UK007M | 2024-03-05T14:05:17.341Z | 2024-03-12T12:15:21.587Z |
| 4024161 | 4024161 | 20240304001558_wKxXd | UK008S | 2024-03-05T14:05:17.341Z | 2024-03-12T12:15:21.587Z |
| 4024162 | 4024162 | 20240304001558_wKxXd | UK008U | 2024-03-05T14:05:17.341Z | 2024-03-12T12:15:21.587Z |
| 4024163 | 4024163 | 20240304001558_wKxXd | UK009P | 2024-03-05T14:05:17.341Z | 2024-03-12T12:15:21.587Z |
| 4024164 | 4024164 | 20240304001558_wKxXd | UK00AJ | 2024-03-05T14:05:17.341Z | 2024-03-12T12:15:21.587Z |
| 4024165 | 4024165 | 20240304001558_wKxXd | UK00B0 | 2024-03-05T14:05:17.341Z | 2024-03-12T12:15:21.587Z |
| 4024166 | 4024166 | 20240304001558_wKxXd | UK00BK | 2024-03-05T14:05:17.341Z | 2024-03-12T12:15:21.587Z |
| 4024167 | 4024167 | 20240304001558_wKxXd | UK00C1 | 2024-03-05T14:05:17.341Z | 2024-03-12T12:15:21.587Z |
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);