5

I have some spatial data (MapInfo files) that contains self-intersecting polygons. These cause problems in my processing, in particular I can't generate geometric unions in PostGIS. Is there an easy way to resolve the issue? I can deal with multi-polygons if that should be necessary.

Peter Becker
  • 8,795
  • 7
  • 41
  • 64

1 Answers1

5

I figured it out myself: an st_buffer(wkb_geometry,0) does the trick, at least on my sample data.

Peter Becker
  • 8,795
  • 7
  • 41
  • 64