participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
20 rows where meteor_unique_trajectory_identifier = "20231111032707_VGoyu" 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 |
---|---|---|---|---|---|
3370257 | 3370257 | 20231111032707_VGoyu | UK003X | 2024-01-06T00:04:15.329Z | 2024-01-06T00:04:15.329Z |
3370258 | 3370258 | 20231111032707_VGoyu | UK005E | 2024-01-06T00:04:15.329Z | 2024-01-06T00:04:15.329Z |
3370259 | 3370259 | 20231111032707_VGoyu | UK005M | 2024-01-06T00:04:15.329Z | 2024-01-06T00:04:15.329Z |
3370260 | 3370260 | 20231111032707_VGoyu | UK0062 | 2024-01-06T00:04:15.329Z | 2024-01-06T00:04:15.329Z |
3370261 | 3370261 | 20231111032707_VGoyu | UK0063 | 2024-01-06T00:04:15.329Z | 2024-01-06T00:04:15.329Z |
3370262 | 3370262 | 20231111032707_VGoyu | UK006P | 2024-01-06T00:04:15.329Z | 2024-01-06T00:04:15.329Z |
3370263 | 3370263 | 20231111032707_VGoyu | UK007C | 2024-01-06T00:04:15.329Z | 2024-01-06T00:04:15.329Z |
3370264 | 3370264 | 20231111032707_VGoyu | UK007N | 2024-01-06T00:04:15.329Z | 2024-01-06T00:04:15.329Z |
3370265 | 3370265 | 20231111032707_VGoyu | UK007R | 2024-01-06T00:04:15.329Z | 2024-01-06T00:04:15.329Z |
3370266 | 3370266 | 20231111032707_VGoyu | UK008F | 2024-01-06T00:04:15.329Z | 2024-01-06T00:04:15.329Z |
3370267 | 3370267 | 20231111032707_VGoyu | UK0099 | 2024-01-06T00:04:15.329Z | 2024-01-06T00:04:15.329Z |
3370268 | 3370268 | 20231111032707_VGoyu | UK009L | 2024-01-06T00:04:15.329Z | 2024-01-06T00:04:15.329Z |
3370269 | 3370269 | 20231111032707_VGoyu | UK009M | 2024-01-06T00:04:15.329Z | 2024-01-06T00:04:15.329Z |
3370270 | 3370270 | 20231111032707_VGoyu | UK00B1 | 2024-01-06T00:04:15.329Z | 2024-01-06T00:04:15.329Z |
3370251 | 3370251 | 20231111032707_VGoyu | UK000J | 2024-01-06T00:04:15.328Z | 2024-01-06T00:04:15.328Z |
3370252 | 3370252 | 20231111032707_VGoyu | UK000S | 2024-01-06T00:04:15.328Z | 2024-01-06T00:04:15.328Z |
3370253 | 3370253 | 20231111032707_VGoyu | UK002C | 2024-01-06T00:04:15.328Z | 2024-01-06T00:04:15.328Z |
3370254 | 3370254 | 20231111032707_VGoyu | UK002F | 2024-01-06T00:04:15.328Z | 2024-01-06T00:04:15.328Z |
3370255 | 3370255 | 20231111032707_VGoyu | UK0031 | 2024-01-06T00:04:15.328Z | 2024-01-06T00:04:15.328Z |
3370256 | 3370256 | 20231111032707_VGoyu | UK003A | 2024-01-06T00:04:15.328Z | 2024-01-06T00:04:15.328Z |
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);