from specific nodes on the network i want to calculate the total length of links that feed into that node
i.e. how can i sum the total (cost) of all links "upstream" from a given point
IanM
from specific nodes on the network i want to calculate the total length of links that feed into that node
i.e. how can i sum the total (cost) of all links "upstream" from a given point
IanM
If orientations of all the links are directed to upper stream, the NetworkCostCalculator (Weight Type: By Length (Foward Only)) can be used to extract upstream links from the specified node (i.e. Source). You can then calculate total length of them easily.
If orientations are unknown but the root node (Destination) is known, you can use the NetworkFlowOrientor and the Orientor (Orientation Type: REVERSE) to adjust link orientations properly.
However, if the root node is also unknown, I have no idea to solve the question...
Takashi
IanM
I prefer to use the WorkspaceRunner or a batch file containing command lines