We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The use of the Haversine distance from cuSpatial is no longer up to date in examples rapids-ec2-mnmg and rapids-autoscaling-multi-tenant-kubernetes.
rapids-ec2-mnmg
rapids-autoscaling-multi-tenant-kubernetes
cuspatial.haversine_distance( df["pickup_longitude"], df["pickup_latitude"], df["dropoff_longitude"], df["dropoff_latitude"], )
should be updated to
pickup = cuspatial.GeoSeries.from_points_xy( part[["pickup_longitude", "pickup_latitude"]].interleave_columns() ) dropoff = cuspatial.GeoSeries.from_points_xy( part[["dropoff_longitude", "dropoff_latitude"]].interleave_columns() ) res = cuspatial.haversine_distance(pickup, dropoff) res.index = part.index return res
to use the latest API.
The text was updated successfully, but these errors were encountered:
Fixed by #336 and #329
Sorry, something went wrong.
taureandyernv
Successfully merging a pull request may close this issue.
The use of the Haversine distance from cuSpatial is no longer up to date in examples
rapids-ec2-mnmg
andrapids-autoscaling-multi-tenant-kubernetes
.should be updated to
to use the latest API.
The text was updated successfully, but these errors were encountered: