标注 | 说明 | 数据类型 |
输入要素 | 将处理的要素类或图层。 | Feature Layer |
删除几何为空的要素 (可选) | 指定是否删除几何为空的要素。
| Boolean |
验证方法 (可选) | 指定用于识别几何问题的几何验证方法。
| String |
派生输出
标注 | 说明 | 数据类型 |
修复的输入要素 | 更新后的输入要素。 | 要素图层 |
此工具会修改输入数据。有关详细信息以及避免数据被意外更改的策略,请参阅修改或更新输入数据的工具。
有效的输入格式包括 shapefile 以及存储在文件或企业级地理数据库中的要素类。对于存储在企业级地理数据库中的要素类,支持以下空间类型:
启用撤消切换按钮对于企业级地理数据库的输入无效。
下面是所有几何问题和此工具将执行的相应修复的列表:
下面是可能会由企业级地理数据库中存储的数据导致的几何问题和此工具将执行的相应修复的列表:
可能无法使用 ArcGIS 工具修复与企业级数据库中存储的数据相关的某些问题。
应用一种修复后,此工具将重新评估所得几何,如果发现了其他问题,将执行该问题的相关修复。例如,修复具有 Incorrect ring ordering 问题的几何结果可能会生成具有 Null geometry 问题的几何。
bad dataset extent 的修复几何中不存在修复。要解决这一问题,请运行数据集上的重新计算要素类范围工具。
Esri 验证方法通过 Esri 简化方法确保几何在拓扑上是合法的。仅 Esri 验证适用于存储在企业级地理数据库中的数据。
开放地理空间联盟 OGC 验证方法确保几何符合地理信息的 OpenGIS 执行标准(简单要素访问)第 1 部分:公用架构中定义的 OGC 规范。
使用 OGC 选项修复要素的几何后,任何后续的编辑或修改都可能导致几何不再符合 OGC 规范。修改要素后,运行检查几何工具以检查新几何问题。如有必要,重新运行修复几何工具。
OGC 简化不支持非线性线段,例如贝塞尔曲线、圆弧和椭圆弧。在运行修复几何之前,必须使用输入数据集上的增密工具增密这些类型的段。运行增密工具时,要避免不可逆地更改非线性线段,请先创建数据的副本。然后针对副本使用修复几何。要确定您的数据是否具有非线性线段,请使用添加几何属性工具。
标注 | 说明 | 数据类型 |
输入要素 | 将处理的要素类或图层。 | Feature Layer |
删除几何为空的要素 (可选) | 指定是否删除几何为空的要素。
| Boolean |
验证方法 (可选) | 指定用于识别几何问题的几何验证方法。
| String |
标注 | 说明 | 数据类型 |
修复的输入要素 | 更新后的输入要素。 | 要素图层 |
arcpy.management.RepairGeometry(in_features, {delete_null}, {validation_method})
名称 | 说明 | 数据类型 |
in_features | 将处理的要素类或图层。 | Feature Layer |
delete_null (可选) | 指定是否删除几何为空的要素。
注:KEEP_NULL 仅对来自企业级地理数据库的输入有效。 | Boolean |
validation_method (可选) | 指定用于识别几何问题的几何验证方法。
| String |
名称 | 说明 | 数据类型 |
out_feature_class | 更新后的输入要素。 | 要素图层 |
以下 Python 窗口脚本演示了如何在 shapefile 上以即时模式使用 RepairGeometry 函数:
import arcpy
arcpy.RepairGeometry_management("c:/data/sketchy.shp")
以下独立脚本是如何在脚本中应用 RepairGeometry 函数的示例。
# Description:
# Goes through the table generated by the Check Geometry tool and does
# the following
# 1) backs-up all features which will be 'fixed' to a "_bad_geom" feature class
# 2) runs repairGeometry on all feature classes listed in the table
import arcpy
import os
# Table that was produced by Check Geometry tool
table = r"c:\temp\data.gdb\cg_sample1"
# Create local variables
fcs = []
# Loop through the table and get the list of fcs
for row in arcpy.da.SearchCursor(table, ("CLASS")):
# Get the class (feature class) from the cursor
if not row[0] in fcs:
fcs.append(row[0])
# Now loop through the fcs list, backup the bad geometries into fc + "_bad_geom"
# then repair the fc
print("> Processing {0} feature classes".format(len(fcs)))
for fc in fcs:
print("Processing " + fc)
lyr = 'temporary_layer'
if arcpy.Exists(lyr):
arcpy.Delete_management(lyr)
tv = "cg_table_view"
if arcpy.Exists(tv):
arcpy.Delete_management(tv)
arcpy.MakeTableView_management(table, tv, ("\"CLASS\" = '%s'" % fc))
arcpy.MakeFeatureLayer_management(fc, lyr)
arcpy.AddJoin_management(lyr, arcpy.Describe(lyr).OIDFieldName, tv, "FEATURE_ID")
arcpy.CopyFeatures_management(lyr, fc + "_bad_geom")
arcpy.RemoveJoin_management(lyr, os.path.basename(table))
arcpy.RepairGeometry_management(lyr)