サマリー
サブタイプ コードを格納する入力テーブルまたはフィーチャクラスに、フィールドを定義します。
使用法
フィーチャクラスまたはテーブルが持つことのできるサブタイプ フィールドは、1 つだけです。
サブタイプ フィールドを設定したら、[サブタイプの追加 (Add Subtype)] ツールを使って、フィーチャクラスまたはテーブルにサブタイプ コードを追加できます。
フィーチャクラスまたはテーブルのサブタイプは、ArcCatalog で管理することも可能です。データセットの [プロパティ] ダイアログ ボックスにあるサブタイプ プロパティ ページを使って、サブタイプを作成および変更することができます。
サブタイプ フィールドが不要な場合は、このツールを使用してサブタイプを消去することもできます。
構文
SetSubtypeField_management (in_table, {field}, {clear_value})
パラメーター | 説明 | データ タイプ |
in_table | サブタイプ フィールドとして設定するフィールドを含む、入力テーブルまたはフィーチャクラス。 | Table View |
field (オプション) | サブタイプ コードを格納する、整数フィールド。 | Field |
clear_value (オプション) | サブタイプ フィールドを消去するかどうかを指定します。
| Boolean |
コードのサンプル
Set Subtype Field (サブタイプ フィールドの設定) の例 (Python ウィンドウ)
次の Python ウィンドウ スクリプトは、Set Subtype Field (サブタイプ フィールドの設定) 関数をイミディエイト モードで使用する方法を、例を挙げて示したものです。
import arcpy
arcpy.env.workspace = "C:/data/Montgomery.gdb"
arcpy.SetSubtypeField_management("water/fittings", "TYPECODE", "")
Set Subtype Field (サブタイプ フィールドの設定) の例 2 (スタンドアロン スクリプト)
次のスタンドアロン スクリプトは、サブタイプをフィールドに追加するワークフローの一部として、Set Subtype Field (サブタイプ フィールドの設定) 関数を使用する方法を示しています。
# 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", "")
Set Subtype Field (サブタイプ フィールドの設定) の例 3 (Python ウィンドウ)
次の Python ウィンドウ スクリプトは、Set Subtype Field (サブタイプ フィールドの設定) 関数をイミディエイト モードで使用してサブタイプ フィールドを消去する方法を、例を挙げて示したものです。
import arcpy
arcpy.env.workspace = "C:/data/Montgomery.gdb"
arcpy.SetSubtypeField_management("water/fittings", "", "TRUE")
環境
ライセンス情報
- ArcGIS Desktop Basic: はい
- ArcGIS Desktop Standard: はい
- ArcGIS Desktop Advanced: はい