participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20240304034940_h6feH" 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 |
|---|---|---|---|---|---|
| 4026319 | 4026319 | 20240304034940_h6feH | UK0035 | 2024-03-05T14:08:14.700Z | 2024-03-12T12:15:31.450Z |
| 4026320 | 4026320 | 20240304034940_h6feH | UK004D | 2024-03-05T14:08:14.700Z | 2024-03-12T12:15:31.450Z |
| 4026321 | 4026321 | 20240304034940_h6feH | UK005M | 2024-03-05T14:08:14.700Z | 2024-03-12T12:15:31.450Z |
| 4026322 | 4026322 | 20240304034940_h6feH | UK006L | 2024-03-05T14:08:14.700Z | 2024-03-12T12:15:31.450Z |
| 4026323 | 4026323 | 20240304034940_h6feH | UK0075 | 2024-03-05T14:08:14.700Z | 2024-03-12T12:15:31.450Z |
| 4026324 | 4026324 | 20240304034940_h6feH | UK007N | 2024-03-05T14:08:14.700Z | 2024-03-12T12:15:31.450Z |
| 4026325 | 4026325 | 20240304034940_h6feH | UK0087 | 2024-03-05T14:08:14.700Z | 2024-03-12T12:15:31.450Z |
| 4026326 | 4026326 | 20240304034940_h6feH | UK008F | 2024-03-05T14:08:14.700Z | 2024-03-12T12:15:31.450Z |
| 4026327 | 4026327 | 20240304034940_h6feH | UK0098 | 2024-03-05T14:08:14.700Z | 2024-03-12T12:15:31.450Z |
| 4026328 | 4026328 | 20240304034940_h6feH | UK0099 | 2024-03-05T14:08:14.700Z | 2024-03-12T12:15:31.450Z |
| 4026329 | 4026329 | 20240304034940_h6feH | UK00AL | 2024-03-05T14:08:14.700Z | 2024-03-12T12:15:31.450Z |
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);