I work in ArcGIS 10.3 I have a network consisting of 2 sets of polylines:
- "pair" shapefiles (polylines) connecting two points (different line for each pair), these polylines have an attribute "value"
- "edge" shapefiles (polylines) which correspond with the "pair" polylines, e.g. polyline A-C goes along edge1 and edge2
I made a scheme which displays a simplified situation I'm solving:
What I need to do is to accumulate values on each of the edges. So, for example let's take a look at edge2. Edge2 should have value of 18: pairs A-C, A-D, A-E, B-C, B-D, B-E are all "going through" edge2, so all the values of each pair should accumulate on the edge, therefore the value of edge2 = 18.
Is there any method I could use to do this?
There are 42 edges and 171 pairs in my project. I don't need to know which or how many of the pairs are going through an edge, just the acummulated value on it.
