I am attempting to simplify a series of polygons by buffering them and then unioning the buffers together (sql below).<br>This works fine however, in some instances, there are interior rings (holes) which I would like to remove.
<br>I have tried Segmentize, but it failed to remove the interior rings.<br><br>Any suggestions would be appreciated.<br><br>Craig<br><br>create table orienteering_test with oids as<br>select geomunion(buffer(the_geom,0.0005
)) as the_geom<br>from orienteering_all<br>where map_name = 'Tarrengower'<br>