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
See locationtech/jts#891. The JTS BoundaryChainNoder makes polygon coverage union faster, by reducing memory allocation and topology graph complexity.
BoundaryChainNoder
This can be ported as-is, to work with OverlayNG CoverageUnion.
CoverageUnion
The technique could also be used in the Polygonizer-based CoverageUnion (by @dbaston)
It is worth exploring if the approach to detecting duplicate segments can be optimized further, perhaps by:
SegmentView
unordered_set
The text was updated successfully, but these errors were encountered:
This happened in #655
Sorry, something went wrong.
No branches or pull requests
See locationtech/jts#891. The JTS
BoundaryChainNoder
makes polygon coverage union faster, by reducing memory allocation and topology graph complexity.This can be ported as-is, to work with OverlayNG
CoverageUnion
.The technique could also be used in the Polygonizer-based CoverageUnion (by @dbaston)
It is worth exploring if the approach to detecting duplicate segments can be optimized further, perhaps by:
SegmentView
-style facade class, to avoid copying coordinatesunordered_set
.The text was updated successfully, but these errors were encountered: