participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20240202001624_ltCKS" 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 |
---|---|---|---|---|---|
3909187 | 3909187 | 20240202001624_ltCKS | UK0035 | 2024-02-03T14:04:11.344Z | 2024-02-10T14:24:50.982Z |
3909188 | 3909188 | 20240202001624_ltCKS | UK0041 | 2024-02-03T14:04:11.344Z | 2024-02-10T14:24:50.982Z |
3909189 | 3909189 | 20240202001624_ltCKS | UK004H | 2024-02-03T14:04:11.344Z | 2024-02-10T14:24:50.982Z |
3909190 | 3909190 | 20240202001624_ltCKS | UK007C | 2024-02-03T14:04:11.344Z | 2024-02-10T14:24:50.982Z |
3909191 | 3909191 | 20240202001624_ltCKS | UK009L | 2024-02-03T14:04:11.344Z | 2024-02-10T14:24:50.982Z |
3909192 | 3909192 | 20240202001624_ltCKS | UK00A4 | 2024-02-03T14:04:11.344Z | 2024-02-10T14:24:50.982Z |
3909193 | 3909193 | 20240202001624_ltCKS | UK00BH | 2024-02-03T14:04:11.344Z | 2024-02-10T14:24:50.982Z |
3909184 | 3909184 | 20240202001624_ltCKS | UK000F | 2024-02-03T14:04:11.343Z | 2024-02-10T14:24:50.982Z |
3909185 | 3909185 | 20240202001624_ltCKS | UK002F | 2024-02-03T14:04:11.343Z | 2024-02-10T14:24:50.982Z |
3909186 | 3909186 | 20240202001624_ltCKS | UK0034 | 2024-02-03T14:04:11.343Z | 2024-02-10T14:24:50.982Z |
3909183 | 3909183 | 20240202001624_ltCKS | UK0004 | 2024-02-03T14:04:11.333Z | 2024-02-10T14:24:50.982Z |
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);