Set CAD Alias (Conversion)

Zusammenfassung

Renames one or more existing field name aliases by matching columns from the input table with a list of CAD-specific fields with the appropriate name recognized by the Export To CAD tool.

Ältere VersionenÄltere Versionen:

This is a deprecated tool. To learn more about how this tool works click here. This functionality can be accomplished using Add_Field and making simple field calculations.

Verwendung

Syntax

SetCADAlias_conversion (input_table, field_info)
ParameterErläuterungDatentyp
input_table

The feature class, feature layer, table, or table view to which you would like to assign CAD-specific field name aliases.

Table View
field_info

Field info relating a list of aliases matched to the list of existing fields in the input table.

Field Info

Codebeispiel

# Name: SetCadAlias.py
# Description: create aliases
# Author: ESRI

# Import system modules
import arcpy
from arcpy import env

# Set workspace
env.workspace = "c:/Workspace/network.mdb"

arcpy.toolbox = "conversion"
arcpy.setcadalias  ("primary_roads", "area area; name layer")

Umgebungen

Lizenzinformationen

ArcView: Ja
ArcEditor: Ja
ArcInfo: Ja

7/10/2012