表转属性域 (数据管理)

摘要

通过表中的值创建或更新编码值属性域。

用法

语法

TableToDomain_management (in_table, code_field, description_field, in_workspace, domain_name, {domain_description}, {update_option})
参数说明数据类型
in_table

用于从中派生属性域值的数据库表。

Table View
code_field

用于从中派生域编码值的数据库表中的字段。

Field
description_field

用于从中派生属性域描述值的数据库表中的字段。

Field
in_workspace

要创建或要更新的属性域所在的工作空间。

Workspace
domain_name

要创建或要更新的属性域的名称。

String
domain_description
(可选)

要创建或要更新的属性域的描述。不会更新现有属性域的属性域描述。

String
update_option
(可选)

如果属性域已经存在,请指定如何更新属性域。

  • APPEND从数据库表追加到属性域值。
  • REPLACE用数据库表中的值替换属性域中的值。
String

代码示例

TableToDomain 示例(Python 窗口)

以下 Python 窗口脚本演示了如何在即时模式下使用 TableToDomain 函数。

import arcpy
from arcpy import env
env.workspace =  "C:/data"
arcpy.TableToDomain_management ("diameter.dbf", "code", "descript", "montgomery.gdb", "diameters", "Valid pipe diameters")
TableToDomain 示例 2(独立脚本)

此独立脚本将 TableToDomain 函数用作工作流的一部分。

#Name: TableToDomain.py
# Purpose: Update an attribute domain to constrain valid pipe material values
#Author: ESRI

# Import system modules
import arcpy
from arcpy import env
 
try:
    # Set the workspace (to avoid having to type in the full path to the data every time)
    env.workspace = "C:/data"
    
    #Set local parameters
    domTable = "diameter.dbf"
    codeField = "code"
    descField = "descript"
    dWorkspace = "Montgomery.gdb"
    domName = "diameters"
    domDesc = "Valid pipe diameters"
 
    # Process: Create a domain from an existing table
    arcpy.TableToDomain_management(domTable, codeField, descField, dWorkspace, domName, domDesc) 
 
except Exception, e:
    # If an error occurred, print line number and error message
    import traceback, sys
    tb = sys.exc_info()[2]
    print "Line %i" % tb.tb_lineno
    print e.message

环境

相关主题

许可信息

ArcView: 是
ArcEditor: 是
ArcInfo: 是

7/10/2012