I have a postgis database imported with osm2pgsql. Obviously there are lots of invalid geometries which leads to errors with some spatial operations.
geometry.buffer(x) seems to solve this problem, but this operation takes a lot of time. So, I wanted to apply it only to geometries that are not valid:
select * from
(
select *
from polygons
WHERE NOT IsValid(polygons.geom)
) as tbl
where ST_Intersects(
ST_Buffer(tbl.geom, 0.001),
GeomFromText('POLYGON ((XY))', 4326)
);
But this query seems to apply the buffer operation to all entries in the table. How would you limit this operation to the invalid geometries only?
Thank you in advance!