删除相同的 (Data Management)

许可等级:BasicStandardAdvanced

摘要

如果要素类或表中的记录在字段列表中具有相同值,则可删除这些记录。如果选择了 Shape 字段,将会对要素几何进行比较。

使用查找相同的工具可报告哪些记录被视为相同记录,而不删除相同的记录。

用法

语法

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.


# 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)

环境

相关主题

许可信息

ArcGIS for Desktop Basic:否
ArcGIS for Desktop Standard:否
ArcGIS for Desktop Advanced:是
9/15/2013