添加子类型 (数据管理)

摘要

将新的子类型添加到输入表的子类型中。

使用情况

  • 必须将要素类或表中的字段指定为子类型字段,之后才能添加新的子类型。可使用设置子类型字段工具来完成此操作。

  • 如果您所添加子类型的编码已经存在,则将忽略该新增子类型。

  • 如果您需要更改现有子类型的描述,您必须首先移除该子类型,然后添加具有相同编码的新子类型并添加新的描述。

  • 您也可在子类型视图中查看和管理子类型,此视图可通过单击数据功能区设计部分的子类型按钮或字段视图功能区中的子类型按钮打开。

参数

标注说明数据类型
输入表

要更新的子类型定义所在的要素类或表。

Table View
子类型编码

要添加的子类型的唯一整数值。

Long
子类型名称

子类型编码描述。

String

派生输出

标注说明数据类型
更新的输入表

已更新的表或要素类。

表视图

arcpy.management.AddSubtype(in_table, subtype_code, subtype_description)
名称说明数据类型
in_table

要更新的子类型定义所在的要素类或表。

Table View
subtype_code

要添加的子类型的唯一整数值。

Long
subtype_description

子类型编码描述。

String

派生输出

名称说明数据类型
out_table

已更新的表或要素类。

表视图

代码示例

AddSubtype 示例(Python 窗口)

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

import arcpy
arcpy.env.workspace = "C:/data/Montgomery.gdb"
arcpy.SetSubtypeField_management("water/fittings", "TYPECODE")
arcpy.AddSubtype_management("water/fittings", "1", "Bend")
AddSubtype 示例 2(独立脚本)

以下独立脚本演示了如何在将子类型添加到字段的工作流中使用 AddSubtype 函数。

# Name: ManageSubtypes.py
# Purpose: Create a subtype definition
# Import system modules
import arcpy
 
# Set the workspace (to avoid having to type in the full path to the data every time)
arcpy.env.workspace =  "C:/data/Montgomery.gdb"
    
# Set local parameters
inFeatures = "water/fittings"
 
# Process: Set Subtype Field...
arcpy.SetSubtypeField_management(inFeatures, "TYPECODE")
# Process: Add Subtypes...
# Store all the suptype values in a dictionary with the subtype code as the 
# "key" and the subtype description as the "value" (stypeDict[code])
stypeDict = {"0": "Unknown", "1": "Bend", "2": "Cap", "3": "Cross", 
             "4": "Coupling", "5": "Expansion joint", "6": "Offset", 
             "7": "Plug", "8": "Reducer", "9": "Saddle", "10": "Sleeve", 
             "11": "Tap", "12": "Tee", "13": "Weld", "14": "Riser"} 
    
# use a for loop to cycle through the dictionary
for code in stypeDict:
    arcpy.AddSubtype_management(inFeatures, code, stypeDict[code])     
			
# Process: Set Default Subtype...
arcpy.SetDefaultSubtype_management(inFeatures, "4")

许可信息

  • Basic: 是
  • Standard: 是
  • Advanced: 是

相关主题