删除要素 (数据管理)

摘要

从输入中删除所有要素或所选要素子集。

如果输入要素来自要素类,则将删除所有行。如果输入要素来自没有任何选择内容的图层,则将删除所有要素。

使用情况

  • 该工具接受具有选择内容的图层作为输入,且仅会删除所选要素。要从要素类中删除特定要素,请使用创建要素图层将要素类转换为图层,或通过将要素类添加到显示中来执行此操作。然后可使用按属性选择图层按位置选择图层工具进行选择,或者通过查询地图图层或使用地图选项卡上选择组中的选择工具交互选择要素进行选择。

  • 如果输入为图层,并且该图层没有选定内容,则将删除所有要素。如果输入为要素类,则将删除所有要素。

    注:

    从包含大量行的要素类中删除所有行的操作将会非常慢。如果您想要删除要素类中的所有行,应考虑改用截断表工具。有关使用截断表的重要警告声明,请参阅截断表文档。

  • 该工具将同时删除输入要素的几何和属性。

  • 此工具支持范围环境。仅删除位于输出范围环境内或与输出范围环境相交的要素。如果输入图层包含选定内容,则只删除位于输出范围内或与输出范围相交的选定要素。

参数

标注说明数据类型
输入要素

包含要删除要素的要素类、shapefile 或图层。

Feature Layer

派生输出

标注说明数据类型
输出要素类

已更新的要素类。

要素图层

arcpy.management.DeleteFeatures(in_features)
名称说明数据类型
in_features

包含要删除要素的要素类、shapefile 或图层。

Feature Layer

派生输出

名称说明数据类型
out_feature_class

已更新的要素类。

要素图层

代码示例

删除要素 (DeleteFeatures) 示例 1(Python 窗口)

以下 Python 窗口脚本演示了如何在即时模式下使用 DeleteFeatures 工具。

import arcpy
arcpy.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
 
# Set environment settings
arcpy.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'"
 
# 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)[0]) > 0:
    arcpy.DeleteFeatures_management(tempLayer)

环境

特殊情况

范围

仅会删除位于范围内或与范围相交的要素。

许可信息

  • Basic: 是
  • Standard: 是
  • Advanced: 是

相关主题