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
23.04
Rapids-Compose
Point polygon distance computes wrong result for some input.
In [30]: points = cuspatial.GeoSeries([ ...: MultiPoint([(0, 2)]), MultiPoint([(2, 3), (2, 1)])]) In [31]: polys = cuspatial.GeoSeries([Polygon([(2, 0), (0, 0), (1, 2), (2, 0)]), Polygon([(2, 0), (3, 2), (1, 2), (2, 0)])]) In [32]: cuspatial.pairwise_point_polygon_distance(points, polys) Out[32]: 0 0.000000 1 0.447214 dtype: float64 # Expected output: # 0.894427190999916 # 0.0
No response
The text was updated successfully, but these errors were encountered:
Bug Fix: point-in-multipolygon reduction using the wrong key-compare …
034bbb9
…functor (#1043) This PR fixes #1042 . In `point_polygon_intersects`, the key comparator incorrectly uses the binary operator that's used for values. Authors: - Michael Wang (https://github.com/isVoid) Approvers: - H. Thomson Comer (https://github.com/thomcom) - Paul Taylor (https://github.com/trxcllnt) URL: #1043
Successfully merging a pull request may close this issue.
Version
23.04
On which installation method(s) does this occur?
Rapids-Compose
Describe the issue
Point polygon distance computes wrong result for some input.
Minimum reproducible example
Relevant log output
No response
Environment details
No response
Other/Misc.
No response
The text was updated successfully, but these errors were encountered: