Clip Function

914
2
08-08-2014 02:44 PM
BrettAuger1
New Contributor

Hi folks,

I am working on creating a tool that buffers streams and wetlands based on stream classes and their levels of protection required. I have created the tool but ran into a problem that was easily fixed before but I cannot seem to figure out how to integrate the fix into my python script. See the attachment below for details.

Before I used to fix the problem of the green buffer overlapping the higher priority  grey buffer. I used to fix this before by selecting the grey buffer and using the "Clip" button found under the Editor toolbar dropdown. This would clip the green buffer to the boundary and that would be that.

Is there a way to set up my buffer or to create a clip function that will clip all the green areas when they overlap a grey buffer. All the buffers are coded and could be assigned priority in a function if needed.

Thanks,

Brett

Edit:

To clarify, this is what I want to do, but using python.

Removing overlap from existing polygons     http://www.blogger.com/post-edit.g?blogID=8632979341103165540&postID=2587436283695112468&from=pencil http://www.blogger.com/blogger.g?blogID=8632979341103165540If you have overlapping polygons that you want to make coincident or adjacent, you can clip out the overlapping portion. When using this method, keep in mind that all editable features underneath the feature you are using to clip with will be clipped.

  1. Select the polygon feature whose border you want to maintain. The other polygon will be clipped back to match it.
  2. Click the Editor menu, then click Clip.
  3. Set the buffer distance to 0 and choose to discard the area that intersects.
  4. Click OK.
Tags (3)
0 Kudos
2 Replies
RiyasDeen
Occasional Contributor III

You can use Clip tool in ArcToolbox to clip your feature class.

ArcGIS Desktop

0 Kudos
BrettAuger1
New Contributor

My problem with the clip tool is that it creates a new feature class. I don't want to have to create a new feature class then copy those features back in to my master layer. That is why the Editor<Clip works so well because you can do it all within the feature class.

0 Kudos