删除相同的 (数据管理)
用法
-
该工具根据输入字段值查找相同的记录,然后从每组相同记录中删除除其中一个相同记录之外的所有记录。可对输入数据集中多个字段的值进行比较。如果指定了多个字段,则记录按第一个字段中的值进行匹配,然后按第二个字段的值进行匹配,依此类推。
-
对于要素类或要素图层输入,请选择字段参数中的“Shape”字段来比较要素几何,以按位置查找相同的要素。仅当“Shape”被选作其中一个输入字段时,XY 容差和 Z 容差参数才有效。
警告:
此工具用于修改输入数据。有关详细信息以及避免数据被意外更改的策略,请参阅无输出的工具。
语法
DeleteIdentical_management (in_dataset, fields, {xy_tolerance}, {z_tolerance})
参数 | 说明 | 数据类型 |
in_dataset |
将删除其相同记录的表或要素类。 | Table View |
fields [fields,...] | 将对其值进行比较以查找相同记录的字段。 | Field |
xy_tolerance (可选) |
在计算时应用于每个折点的 xy 容差(如果另一要素中存在相同的折点)。 | Linear unit |
z_tolerance (可选) |
在计算时应用于每个折点的 z 容差(如果另一要素中存在相同的折点)。 | Double |
代码示例
DeleteIdentical 示例 1(Python 窗口)
以下 Python 窗口脚本演示了如何在 Python 窗口中使用 DeleteIdentical 函数。
import arcpy arcpy.DeleteIdentical_management("C:/data/fireincidents.shp", ["ZONE", "INTENSITY"])
DeleteIdentical 示例 2(独立脚本)
以下独立脚本演示了如何使用 DeleteIdentical 函数识别表或要素类的重复记录。
# Name: DeleteIdentical_Example2.py # Description: Delete identical features in a dataset based on Shape (geometry) and a TEXT field. # Author: ESRI # Import system modules import arcpy from arcpy import env env.overwriteOutput = True # Set workspace environment 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)
相关主题
许可信息
ArcView: 否
ArcEditor: 否
ArcInfo: 是
7/10/2012