participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
17 rows where meteor_unique_trajectory_identifier = "20230807020458_VFw9x" 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 |
---|---|---|---|---|---|
2711540 | 2711540 | 20230807020458_VFw9x | UK001H | 2024-01-06T00:00:19.263Z | 2024-01-06T00:00:19.263Z |
2711541 | 2711541 | 20230807020458_VFw9x | UK001N | 2024-01-06T00:00:19.263Z | 2024-01-06T00:00:19.263Z |
2711542 | 2711542 | 20230807020458_VFw9x | UK0030 | 2024-01-06T00:00:19.263Z | 2024-01-06T00:00:19.263Z |
2711543 | 2711543 | 20230807020458_VFw9x | UK0031 | 2024-01-06T00:00:19.263Z | 2024-01-06T00:00:19.263Z |
2711544 | 2711544 | 20230807020458_VFw9x | UK0032 | 2024-01-06T00:00:19.263Z | 2024-01-06T00:00:19.263Z |
2711545 | 2711545 | 20230807020458_VFw9x | UK003B | 2024-01-06T00:00:19.263Z | 2024-01-06T00:00:19.263Z |
2711546 | 2711546 | 20230807020458_VFw9x | UK004B | 2024-01-06T00:00:19.263Z | 2024-01-06T00:00:19.263Z |
2711547 | 2711547 | 20230807020458_VFw9x | UK004P | 2024-01-06T00:00:19.263Z | 2024-01-06T00:00:19.263Z |
2711548 | 2711548 | 20230807020458_VFw9x | UK005H | 2024-01-06T00:00:19.263Z | 2024-01-06T00:00:19.263Z |
2711549 | 2711549 | 20230807020458_VFw9x | UK005R | 2024-01-06T00:00:19.263Z | 2024-01-06T00:00:19.263Z |
2711550 | 2711550 | 20230807020458_VFw9x | UK006A | 2024-01-06T00:00:19.263Z | 2024-01-06T00:00:19.263Z |
2711551 | 2711551 | 20230807020458_VFw9x | UK006V | 2024-01-06T00:00:19.263Z | 2024-01-06T00:00:19.263Z |
2711552 | 2711552 | 20230807020458_VFw9x | UK006Y | 2024-01-06T00:00:19.263Z | 2024-01-06T00:00:19.263Z |
2711553 | 2711553 | 20230807020458_VFw9x | UK007N | 2024-01-06T00:00:19.263Z | 2024-01-06T00:00:19.263Z |
2711554 | 2711554 | 20230807020458_VFw9x | UK0087 | 2024-01-06T00:00:19.263Z | 2024-01-06T00:00:19.263Z |
2711555 | 2711555 | 20230807020458_VFw9x | UK0088 | 2024-01-06T00:00:19.263Z | 2024-01-06T00:00:19.263Z |
2711556 | 2711556 | 20230807020458_VFw9x | UK008G | 2024-01-06T00:00:19.263Z | 2024-01-06T00:00:19.263Z |
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);