フィーチャの削除(Delete Features) (データの管理)

サマリ

入力フィーチャクラスまたはレイヤからフィーチャを削除します。入力が、フィーチャが選択された状態のレイヤの場合は、選択されているフィーチャだけが削除されます。入力がジオデータベース フィーチャクラスまたはシェープファイルの場合、すべてのフィーチャが削除されます。

使用法

構文

DeleteFeatures_management (in_features)
パラメータ説明データ タイプ
in_features

削除するフィーチャを含むフィーチャクラス、シェープファイル、またはレイヤ。

Feature Layer

コードのサンプル

DeleteFeatures(フィーチャの削除)の例(Python ウィンドウ)

次の Python ウィンドウ スクリプトは、イミディエイト モードで DeleteFeatures(フィーチャの削除)ツールを使用する方法を示しています。

import arcpy
from arcpy import env
env.workspace = "C:/data"
arcpy.CopyFeatures_management("majorrds.shp", "C:/output/output.gdb/majorrds2")
arcpy.DeleteFeatures_management("C:/output/output.gdb/majorrds2")
DeleteFeatures(フィーチャの削除)の例 2(スタンドアロン スクリプト)

次のスタンドアロン スクリプトは、式に基づいてフィーチャを削除するために DeleteFeatures(フィーチャの削除)関数を使用する方法を示しています。

# Name: DeleteFeatures_Example2.py
# Description: Delete features from a feature class based on an expression
# Author: ESRI
 
# Import system modules
import arcpy
from arcpy import env
 
# Set environment settings
env.workspace = "C:/data/airport.gdb"
 
# Set local variables
inFeatures = "parcels"
outFeatures = "C:/output/output.gdb/new_parcels"
tempLayer = "parcelsLayer"
expression = arcpy.AddFieldDelimiters(tempLayer, "PARCEL_ID") + " = 'Cemetery'"
 
try:
    # Execute CopyFeatures to make a new copy of the feature class
    arcpy.CopyFeatures_management(inFeatures, outFeatures)
 
    # Execute MakeFeatureLayer
    arcpy.MakeFeatureLayer_management(outFeatures, tempLayer)
 
    # Execute SelectLayerByAttribute to determine which features to delete
    arcpy.SelectLayerByAttribute_management(tempLayer, "NEW_SELECTION", 
                                            expression)
 
    # Execute GetCount and if some features have been selected, then 
    #  execute DeleteFeatures to remove the selected features.
    if int(arcpy.GetCount_management(tempLayer).getOutput(0)) > 0:
        arcpy.DeleteFeatures_management(tempLayer)
         
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