Renumber Nodes (Coverage)

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 item signifying the elevation of the from_node of each arc.

ArcInfo Item
to_item
(Optional)

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

ArcInfo Item

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
# Author: ESRI

# 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

ArcView: No
ArcEditor: No
ArcInfo: Requires ArcInfo Workstation installed

Published 6/8/2010