[GIS] How to extract all lines that do not intersect with buffer

arcgis-10.1buffergeoprocessingintersection

I am working in ArcGIS Desktop 10.0 and/or 10.1.

I have two road network feature classes in a file geodatabase. I have created a 5 meter buffer around the first one, so it is now a polygon feature. The other feature is a line feature. I want to intersect the line feature road network with the buffered one and generate an output feature class that includes only the road lines that fall outside of the buffer.

When I run Intersect, the output is only the portion of the lines that fall inside the buffer.

Is there a process to "clip off" the lines that fall inside the buffer polygons and just output a line feature containing all the lines outside the buffer?

I am open to using other software if necessary. Thanks for your help!

Best Answer

I'm not sure this warrants a full answer, but all rewards will go to a bounty I want to place tomorrow!

The Erase tool takes one or more features and uses them to remove any intersecting features from the input feature class. The erase feature type must be the same or higher order type as the input feature type. That is, if the input feature type is point, the erase feature type must be lines or polygons.

The ArcGIS 10.1 help topic is here.

Related Question