Quantcast
Channel: Forums - ArcObjects SDKs
Viewing all articles
Browse latest Browse all 1374

Determining Upstream and Downstream polylines

$
0
0
Hello,

I am looking for the best approach to determining the upstream and downstream polylines of two segments.

I have code that has just split a polyline into two segments:

Code:

ISet newSet = featureEditor.Split(_pointFeature);
IFeature newLine = (IFeature)newSet.Next();
while (newLine != null)
{
    // determine up / downstream?  or old / new sewer?
    newLine = (IFeature)newSet.Next();
}


Thanks!

Viewing all articles
Browse latest Browse all 1374

Trending Articles