participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
21 rows where meteor_unique_trajectory_identifier = "20240304032356_71HUj" 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 |
|---|---|---|---|---|---|
| 4026011 | 4026011 | 20240304032356_71HUj | UK001T | 2024-03-05T14:07:47.308Z | 2024-03-12T12:15:30.423Z |
| 4026012 | 4026012 | 20240304032356_71HUj | UK002F | 2024-03-05T14:07:47.308Z | 2024-03-12T12:15:30.423Z |
| 4026013 | 4026013 | 20240304032356_71HUj | UK002X | 2024-03-05T14:07:47.308Z | 2024-03-12T12:15:30.423Z |
| 4026014 | 4026014 | 20240304032356_71HUj | UK0032 | 2024-03-05T14:07:47.308Z | 2024-03-12T12:15:30.423Z |
| 4026015 | 4026015 | 20240304032356_71HUj | UK0035 | 2024-03-05T14:07:47.308Z | 2024-03-12T12:15:30.423Z |
| 4026016 | 4026016 | 20240304032356_71HUj | UK003B | 2024-03-05T14:07:47.308Z | 2024-03-12T12:15:30.423Z |
| 4026017 | 4026017 | 20240304032356_71HUj | UK003X | 2024-03-05T14:07:47.308Z | 2024-03-12T12:15:30.423Z |
| 4026018 | 4026018 | 20240304032356_71HUj | UK004D | 2024-03-05T14:07:47.308Z | 2024-03-12T12:15:30.423Z |
| 4026019 | 4026019 | 20240304032356_71HUj | UK004N | 2024-03-05T14:07:47.308Z | 2024-03-12T12:15:30.423Z |
| 4026020 | 4026020 | 20240304032356_71HUj | UK005M | 2024-03-05T14:07:47.308Z | 2024-03-12T12:15:30.423Z |
| 4026021 | 4026021 | 20240304032356_71HUj | UK006Z | 2024-03-05T14:07:47.308Z | 2024-03-12T12:15:30.423Z |
| 4026022 | 4026022 | 20240304032356_71HUj | UK0075 | 2024-03-05T14:07:47.308Z | 2024-03-12T12:15:30.423Z |
| 4026023 | 4026023 | 20240304032356_71HUj | UK007N | 2024-03-05T14:07:47.308Z | 2024-03-12T12:15:30.423Z |
| 4026024 | 4026024 | 20240304032356_71HUj | UK0087 | 2024-03-05T14:07:47.308Z | 2024-03-12T12:15:30.423Z |
| 4026025 | 4026025 | 20240304032356_71HUj | UK0098 | 2024-03-05T14:07:47.308Z | 2024-03-12T12:15:30.423Z |
| 4026026 | 4026026 | 20240304032356_71HUj | UK0099 | 2024-03-05T14:07:47.308Z | 2024-03-12T12:15:30.423Z |
| 4026027 | 4026027 | 20240304032356_71HUj | UK00AL | 2024-03-05T14:07:47.308Z | 2024-03-12T12:15:30.423Z |
| 4026028 | 4026028 | 20240304032356_71HUj | UK00B1 | 2024-03-05T14:07:47.308Z | 2024-03-12T12:15:30.423Z |
| 4026029 | 4026029 | 20240304032356_71HUj | UK00C2 | 2024-03-05T14:07:47.308Z | 2024-03-12T12:15:30.423Z |
| 4026009 | 4026009 | 20240304032356_71HUj | UK000J | 2024-03-05T14:07:47.307Z | 2024-03-12T12:15:30.423Z |
| 4026010 | 4026010 | 20240304032356_71HUj | UK001L | 2024-03-05T14:07:47.307Z | 2024-03-12T12:15:30.423Z |
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);