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
ConcaveHullOfPolygons
ConcaveHullOfPolygons can produce a disconnected MultiPolygon output in some situations. This is contrary to the stated contract for this class.
This is due to a design limitation in the current code. It can be fixed by ensuring that triangle removal does not disconnect the triangulation.
ConcaveHull
MULTIPOLYGON (((10 20, 20 20, 20 10, 10 10, 10 20)), ((20 30, 30 30, 30 20, 20 20, 20 30)), ((80 90, 90 90, 90 80, 80 80, 80 90)))
Result for Length Ratio = 0.1
MULTIPOLYGON (((20 30, 30 30, 30 20, 20 10, 10 10, 10 20, 20 30)), ((90 90, 90 80, 80 80, 80 90, 90 90)))
The text was updated successfully, but these errors were encountered:
dr-jts
No branches or pull requests
ConcaveHullOfPolygons
can produce a disconnected MultiPolygon output in some situations. This is contrary to the stated contract for this class.This is due to a design limitation in the current code. It can be fixed by ensuring that triangle removal does not disconnect the triangulation.
Notes
ConcaveHull
for points).Example
Result for Length Ratio = 0.1
The text was updated successfully, but these errors were encountered: