How to intersect road segments with nested buffers without breaking segments?

1869
1
03-02-2016 02:57 AM
GörsevArgın
New Contributor

I have 2 shapefiles. One of them has nested buffers, and other one has road segments. I want to calculate mean length of segments for each buffer area. I tried intersect and identiry, however both of them divided road segments into several parts with respect to all buffer orders. How can I intersect these two data without breaking road segments? 

Ps: I have too many buffers in too many shape files, so have to find a shortcut.

0 Kudos
1 Reply
DuncanHornby
MVP Notable Contributor

When you ask such questions its very helpful to show an image of your data. You say you have nested buffers, in some cases these may be rings (think of donuts) or overlapping polygons. Also what influences your solution is knowing if these nested buffers overlap other sets of nested buffers?

Assuming you have sets of overlapping polygons and no one set overlaps any other then a fairly simply model with an iterator would solve this problem. You essentially step through each buffer and clip out the network then summarize length. So if you have a 1000 buffers you end up with 1000 clipped datasets.  If this is done within a sub-model you can collect all the summary tables and fire them off to a merge tool in the master model. If you don't know about embedding models then you need to read the help file.

Export Graphic.png

After the summary tool you may want to add fields and populate with layer names and buffer ID's.