使用方法
该工具根据输入字段值查找相同的记录,然后从每组相同记录中删除除其中一个相同记录之外的所有记录。可对输入数据集中多个字段的值进行比较。如果指定了多个字段,则记录将首先按第一个字段中的值进行匹配,然后按第二个字段的值进行匹配,依此类推。
对于要素类或要素图层输入,请选择字段参数中的 Shape 字段来比较要素几何,以按位置查找相同的要素。仅当 Shape 被选作其中一个输入字段时,XY 容差和 Z 容差参数才有效。
警告:
此工具会修改输入数据。有关详细信息以及避免数据被意外更改的策略,请参阅不创建输出数据集的工具。
语法
DeleteIdentical(in_dataset, fields, {xy_tolerance}, {z_tolerance})
参数 | 说明 | 数据类型 |
in_dataset | 将删除相同记录的表或要素类。 | Table View |
fields [fields,...] | 将对字段值进行比较以查找相同记录的一个或多个字段。 | Field |
xy_tolerance (可选) | 在计算时应用于每个折点的 xy 容差(如果另一要素中存在相同的折点)。 | Linear Unit |
z_tolerance (可选) | 在计算时应用于每个折点的 z 容差(如果另一要素中存在相同的折点)。 | Double |
派生输出
名称 | 说明 | 数据类型 |
out_dataset | 已更新的输入数据集。 | 表视图 |
代码示例
以下 Python 窗口脚本演示了如何在即时模式下使用 DeleteIdentical 函数。
import arcpy
arcpy.DeleteIdentical_management("C:/data/fireincidents.shp", ["ZONE", "INTENSITY"])
以下独立脚本演示了如何使用 DeleteIdentical 函数识别表或要素类的重复记录。
# Name: DeleteIdentical_Example2.py
# Description: Delete identical features in a dataset based on Shape (geometry) and a TEXT field.
# Import system modules
import arcpy
arcpy.env.overwriteOutput = True
# Set workspace environment
arcpy.env.workspace = "C:/data/sbfire.gdb"
# Set input feature class
in_dataset = "fireincidents"
# Set the field upon which the identicals are found
fields = ["Shape", "INTENSITY"]
# Set the XY tolerance within which to identical records to be deleted
xy_tol = "0.02 Miles"
# Set the Z tolerance to default
z_tol = ""
# Execute Delete Identical
arcpy.DeleteIdentical_management(in_dataset, fields, xy_tol, z_tol)
许可信息
- Basic: 否
- Standard: 否
- Advanced: 是