I intend to remove points from a polygons with extreme angles like the image link
- Get the points
- Remove from linestring
I make my buffer like this...
SELECT (ST_Dump(
ST_Union(
ST_BUFFER(the_geom, 10, 'endcap=flat join=round')))).geom as the_geom
FROM mytable
The error is on buffer unions, see the image.
I want to remove that points.
