Renumber Nodes (Coverage)

License Level:BasicStandardAdvanced

Summary

Updates arc–node topology by renumbering nodes for the input coverage arcs and identifies arcs that share the same node locations.

The tool renumbers the internal node numbers for each arc, assigns the same node number for arcs that share a common node location, and updates the FNODE# and TNODE# items in the arc attribute table (AAT) when it exists.

Learn more about how Renumber Nodes works

Illustration

Renumber Nodes illustration

Usage

Syntax

Renode_arc (in_cover, {from_item}, {to_item})
ParameterExplanationData Type
in_cover

The coverage whose nodes will be renumbered.

Coverage
from_item
(Optional)

The INFO item signifying the elevation of the from_node of each arc.

String
to_item
(Optional)

The INFO item signifying the elevation of the to_node of each arc.

String

Code Sample

Renode example (stand-alone script)

The following stand-alone script demonstrates how to renumber nodes in a coverage.

# Name: Renode_Example.py
# Description: Renumbers the nodes in a coverage
# Requirements: ArcInfo Workstation

# Import system modules
import arcpy
from arcpy import env

# Set environment settings
env.workspace = "C:/data"

# Set local variables
inCover = "major_rds_raw"

# Execute Renode
arcpy.Renode_arc (inCover)

Environments

Related Topics

Licensing Information

ArcGIS for Desktop Basic: No
ArcGIS for Desktop Standard: No
ArcGIS for Desktop Advanced: Requires ArcInfo Workstation installed
3/3/2014