I have a linear feature layer consisting of all the arches representing the street network of a township, and a point feature layer consisting of all the nodes conjoined to those arches.
The linear layer has two fields in its attributes table : "F_NODE" and "T_NODE", the former containing an ID number connected to the node from which moves the direction af the arch, the latter containing an ID number connected to the node the arch moves toward.
I am executing a control on these two layers about the accuracy of the data included in the fields mentioned before, i'm doing this manually, placing labels on the nodes and on the arches and
checking if the ID numbers of the arches match the ones of the nodes.
This will require a lot of time and there's always the risk of making further mistakes.
Is there a way to set this kind of control automatically using a tool in arcInfo or in Network Analyst?
Thank you
The linear layer has two fields in its attributes table : "F_NODE" and "T_NODE", the former containing an ID number connected to the node from which moves the direction af the arch, the latter containing an ID number connected to the node the arch moves toward.
I am executing a control on these two layers about the accuracy of the data included in the fields mentioned before, i'm doing this manually, placing labels on the nodes and on the arches and
checking if the ID numbers of the arches match the ones of the nodes.
This will require a lot of time and there's always the risk of making further mistakes.
Is there a way to set this kind of control automatically using a tool in arcInfo or in Network Analyst?
Thank you
Assuming that you have a feature class of streets and a feature class of points. You can run the gp tool Spatial Join.
it is in the Analysis tools for Overlay. Set the Target feature to be the point feature class and the Join Features to be the line feature class and choose the Join operation to be JOIN_ONE_TO_MANY and run the tool. It will create a new point feature class that will have joined over all the fields from the Line feature class. Now you can simply select the points where the ID of the point does not match the F_NODE or the T_NODE.
Jay Sandhu