サブタイプの削除(Remove Subtype) (データの管理)

サマリ

サブタイプをそのコードに基づいて入力テーブルから削除します。

使用法

構文

RemoveSubtype_management (in_table, subtype_code)
パラメータ説明データ タイプ
in_table

サブタイプ定義を格納するフィーチャクラスまたはテーブル

Table View
subtype_code
[subtype_code,...]

入力テーブルまたはフィーチャクラスからサブタイプを削除するために使用されるコード。

String

コードのサンプル

Remove Subtype(サブタイプの削除)の例(Python ウィンドウ)

次の Python ウィンドウ スクリプトは、RemoveSubtype(サブタイプの削除)関数をイミディエイト モードで使用する方法を示しています。

import arcpy
from arcpy import env
env.workspace =  "C:/data/Montgomery.gdb"
arcpy.RemoveSubtype_management ("water/fittings", ["4","7"])
Remove Subtype(サブタイプの削除)の例 2(スタンドアロン Python スクリプト)

次のスタンドアロン スクリプトは、サブタイプ定義からサブタイプを削除するワークフローの一部として RemoveSubtype(サブタイプの削除)関数を使用する方法を示しています。

#Name: RemoveSubtype.py
# Purpose: Remove subtypes from a subtype definition
#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/Montgomery.gdb"
  
    #Set local parameters
    inFeatures = "water/fittings"
    stypeList = ["5", "6", "7"]
 
    # Process: Remove Subtype Codes...
    arcpy.RemoveSubtype_management(inFeatures, stypeList)
 
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