-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Implement CoverageSimplifier #11540
Comments
Using the GEOS method would imply that a whole layer fits into RAM. This is probably reasonable for 90% of use cases, but would break for remaining 10%. (CC @dbaston as he may have some familiarity) |
I've had this on my mind for a little while. It seems a fair bit of work to do cleanly (even if reading everything into memory) because |
I wasn't considering using ogr2ogr for that, but a new filter under the gdal vector pipeline framework, where we can do one thing at the time. This will be a bit less optimized that ogr2ogr, but much more maintainable and predictable for users regarding into which order operations are done. like
That's cool
this calls for a "spatial_sort" filter :-) |
Feature description
Add support for simplifying a polygonal coverage with the JTS/GEOS method. It may not fit well for existing tools which useally work feature by feature. Except ogr_vector_algebra.
https://lin-ear-th-inking.blogspot.com/2023/03/simplifying-polygonal-coverages-with-jts.html
https://libgeos.org/doxygen/classgeos_1_1coverage_1_1CoverageSimplifier.html#a86620acba2fe548e6911365a25bc32a0
Additional context
No response
The text was updated successfully, but these errors were encountered: