participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
19 rows where meteor_unique_trajectory_identifier = "20231111022622_Ju9Aa" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, updated_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
3369231 | 3369231 | 20231111022622_Ju9Aa | UK00AE | 2024-01-06T00:04:15.250Z | 2024-01-06T00:04:15.250Z |
3369232 | 3369232 | 20231111022622_Ju9Aa | UK00B1 | 2024-01-06T00:04:15.250Z | 2024-01-06T00:04:15.250Z |
3369214 | 3369214 | 20231111022622_Ju9Aa | UK000J | 2024-01-06T00:04:15.249Z | 2024-01-06T00:04:15.249Z |
3369215 | 3369215 | 20231111022622_Ju9Aa | UK000S | 2024-01-06T00:04:15.249Z | 2024-01-06T00:04:15.249Z |
3369216 | 3369216 | 20231111022622_Ju9Aa | UK002F | 2024-01-06T00:04:15.249Z | 2024-01-06T00:04:15.249Z |
3369217 | 3369217 | 20231111022622_Ju9Aa | UK0035 | 2024-01-06T00:04:15.249Z | 2024-01-06T00:04:15.249Z |
3369218 | 3369218 | 20231111022622_Ju9Aa | UK003A | 2024-01-06T00:04:15.249Z | 2024-01-06T00:04:15.249Z |
3369219 | 3369219 | 20231111022622_Ju9Aa | UK003X | 2024-01-06T00:04:15.249Z | 2024-01-06T00:04:15.249Z |
3369220 | 3369220 | 20231111022622_Ju9Aa | UK0041 | 2024-01-06T00:04:15.249Z | 2024-01-06T00:04:15.249Z |
3369221 | 3369221 | 20231111022622_Ju9Aa | UK005M | 2024-01-06T00:04:15.249Z | 2024-01-06T00:04:15.249Z |
3369222 | 3369222 | 20231111022622_Ju9Aa | UK006B | 2024-01-06T00:04:15.249Z | 2024-01-06T00:04:15.249Z |
3369223 | 3369223 | 20231111022622_Ju9Aa | UK0075 | 2024-01-06T00:04:15.249Z | 2024-01-06T00:04:15.249Z |
3369224 | 3369224 | 20231111022622_Ju9Aa | UK007N | 2024-01-06T00:04:15.249Z | 2024-01-06T00:04:15.249Z |
3369225 | 3369225 | 20231111022622_Ju9Aa | UK0099 | 2024-01-06T00:04:15.249Z | 2024-01-06T00:04:15.249Z |
3369226 | 3369226 | 20231111022622_Ju9Aa | UK009J | 2024-01-06T00:04:15.249Z | 2024-01-06T00:04:15.249Z |
3369227 | 3369227 | 20231111022622_Ju9Aa | UK009L | 2024-01-06T00:04:15.249Z | 2024-01-06T00:04:15.249Z |
3369228 | 3369228 | 20231111022622_Ju9Aa | UK009T | 2024-01-06T00:04:15.249Z | 2024-01-06T00:04:15.249Z |
3369229 | 3369229 | 20231111022622_Ju9Aa | UK00A4 | 2024-01-06T00:04:15.249Z | 2024-01-06T00:04:15.249Z |
3369230 | 3369230 | 20231111022622_Ju9Aa | UK00A9 | 2024-01-06T00:04:15.249Z | 2024-01-06T00:04:15.249Z |
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);