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

ライセンス レベル:BasicStandardAdvanced

サマリ

すべてのフィーチャまたは選択したフィーチャのサブセットを入力から削除します。

入力フィーチャがフィーチャクラスまたはテーブルの場合は、すべての行が削除されます。入力フィーチャが、フィーチャが選択されていない状態のレイヤの場合は、すべてのフィーチャが削除されます。

使用法

構文

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

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

Feature Layer

コードのサンプル

DeleteFeatures(フィーチャの削除)の例 1(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
 
# 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 as e:
    # If an error occurred, print line number and error message
    import traceback
    import sys
    tb = sys.exc_info()[2]
    print("Line {0}".format(tb.tb_lineno))
    print(e.message)

環境

範囲

範囲内にあるか、範囲に重なるフィーチャのみが削除されます。

関連トピック

ライセンス情報

ArcGIS for Desktop Basic: ○
ArcGIS for Desktop Standard: ○
ArcGIS for Desktop Advanced: ○
9/14/2013