[GIS] Remove overlapping buffers

arcgis-10.2arcgis-desktopbuffermodelbuilder

I have put a buffer around points from a point data set. But some buffers overlap each other. Now I would like to remove all the buffers (from the data set) which overlap another buffer. Does somebody have a suggestion, I would like to use the modelbuilder as I dont know how to use python.

Best Answer

Try a three step approach:

  1. Intersect your buffers with themselves
  2. Use the buffer_intersect layer to select layer by location and specify "INTERSECT"
  3. Delete the selected buffers

The image to the left shows the original buffers. The image to the right show the intersected buffers in red and the selected original buffers in turquoise.

enter image description here

Related Question