-
Notifications
You must be signed in to change notification settings - Fork 260
New issue
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
Simple geometry reported as non-simple #247
Comments
cc @vladgp |
@jagill I'll take a look |
Merged
jagill
added a commit
to jagill/presto
that referenced
this issue
Sep 23, 2020
This includes several fixes, two that affect our users that we reported: Esri/geometry-api-java#247 Esri/geometry-api-java#266 The second, in particular, caused workers to hang when they tried to perform a union of two geometries. Release notes: https://github.com/Esri/geometry-api-java/releases/tag/v2.2.4
arhimondr
pushed a commit
to prestodb/presto
that referenced
this issue
Sep 28, 2020
This includes several fixes, two that affect our users that we reported: Esri/geometry-api-java#247 Esri/geometry-api-java#266 The second, in particular, caused workers to hang when they tried to perform a union of two geometries. Release notes: https://github.com/Esri/geometry-api-java/releases/tag/v2.2.4
This was referenced Oct 6, 2020
20 tasks
shangxinli
pushed a commit
to shangxinli/presto
that referenced
this issue
Nov 18, 2020
This includes several fixes, two that affect our users that we reported: Esri/geometry-api-java#247 Esri/geometry-api-java#266 The second, in particular, caused workers to hang when they tried to perform a union of two geometries. Release notes: https://github.com/Esri/geometry-api-java/releases/tag/v2.2.4
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We have many multilinestrings like the one below, which are "tadpole" shapes with a loop and a tail. As a linestring they are invalid, but can be made valid by breaking them up into three line strings: two for the loop, and one for the tail, all intersecting only at boundary points.
Inspecting the multilinestring shows that it is simple. However, Esri reports it as non-simple: it fails at the
checkCracking_()
atOperatorSimplifyLocalHelper.isSimplePlanarImpl_
line 127.The text was updated successfully, but these errors were encountered: