You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In case of a polygon and multi-polygon, the current implementation of simplify may generate self-intersecting polygons/multi-polygons. For the tilemaker project I have implemented a self-intersection aware simplify:
In case of a polygon and multi-polygon, the current implementation of simplify may generate self-intersecting polygons/multi-polygons. For the tilemaker project I have implemented a self-intersection aware simplify:
https://github.com/kleunen/boost_geometry_simplify
It makes sure that:
The simplification of the ring is performed using this algorithm:
https://www.jasondavies.com/simplify/
I believe this would be benificial for the boost geometry project and other projects as well.
Have a try here: https://godbolt.org/z/rhhxjenYP
The text was updated successfully, but these errors were encountered: