Update IDs (Coverage)

License Level:BasicStandardAdvanced

Summary

Updates User-IDs in a coverage after they have been modified in a feature attribute table. The feature attribute table is used to determine the correct User-ID for each feature in the coverage. This value is recorded in all places where the feature User-ID is stored.

Learn more about how Update IDs works

Usage

Syntax

IDEdit_arc (in_cover, feature_type)
ParameterExplanationData Type
in_cover

The coverage for which User-IDs have been modified.

Coverage
feature_type

Specifies the class of features for which User-IDs are to be updated.

  • POLYPolygon User-IDs will be updated. This is the default option.
  • LINEArc User-IDs will be updated.
  • POINTPoint User-IDs will be updated.
  • ANNO.subclassAnnotation User-IDs will be updated.
String

Code Sample

IDEdit example (stand-alone script)

The following stand-alone script demonstrates how to update User-IDs in a coverage.

# Name: IDEdit_Example.py
# Description: Adds polygon labels, then updates the User-IDs for 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 = "texas"
featureType = "POLY"

#Execute IDEdit
arcpy.IDEdit_arc(inCover, featureType)

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