Is there function to delete the areas of overlap between polygon features to achieve visualized results?
I'd like to check for each geometry (row) if a geometry is intersected, or in other words if a geometry is overlapped by another. If this is the case Id like "erase" the overlap from the other geometry without creating a hole. When there is no direct way to delete the overlap, is it possible to create new features from the overlaps, and then filter them out by a certain size threshold?
Maybe there is a simple way I did not see but please excuse PostGIS is new to me.



.... GROUP BY id HAVING(MAX(ST_AREA(geom))) – obchardon May 28 '20 at 07:46