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
The simplify() function currently only works for linestrings.
It should also work for multilinestrings.
It should also work for (multi)polygons.
The problem with simplify is
a) there are many different algorithms which have different properties (I believe only Douglas-Peucker is implemented in boost::geometry which we use)
b) simplification can make geometries invalid, which is bad and we usually guarantee that we only import valid geometries. This is especially bad for polygons.
The
simplify()
function currently only works for linestrings.The problem with simplify is
a) there are many different algorithms which have different properties (I believe only Douglas-Peucker is implemented in boost::geometry which we use)
b) simplification can make geometries invalid, which is bad and we usually guarantee that we only import valid geometries. This is especially bad for polygons.
See #1663.
The text was updated successfully, but these errors were encountered: