サブタイプの追加 (Add Subtype) (データ管理)

概要

入力テーブル内のサブタイプに新しいサブタイプを追加します。

使用法

  • 新しいサブタイプを追加する前に、フィーチャクラスまたはテーブル内のフィールドをサブタイプ フィールドとして割り当てる必要があります。この操作には、[サブタイプ フィールドの設定 (Set Subtype Field)] ツールを使用します。

  • すでに存在するコードを持つサブタイプを追加しようとしても、新しいサブタイプは無視されます。

  • 既存のサブタイプの説明を変更する必要がある場合は、初めにそのサブタイプを削除してから、同じコードと新しい説明を使用して新しいサブタイプを追加してください。

  • また、サブタイプ ビューでサブタイプを表示したり管理することもできます。サブタイプ ビューは、[データ] リボンの [設計] セクションにある [サブタイプ] ボタンをクリックするか、[フィールド ビュー] リボンの [サブタイプ] ボタンをクリックして開くことができます。

構文

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: はい

関連トピック