使用方法
此工具将使用与检查几何工具相同的逻辑来识别几何问题。
下面是所有几何问题和此工具将执行的相应修复的列表:
- Null geometry - 从要素类中删除记录。要保留具有空几何的记录,请取消选中删除几何为空的要素(使用 Python 中有关 delete_null 参数的 KEEP_NULL 选项)。
- Short segment - 删除几何的短线段。
- Incorrect ring ordering - 更新几何以获得正确的环走向。
- Incorrect segment orientation - 更新几何以获得正确的线段方向。
- Self intersections - 融合面中的重叠区域。
- Unclosed rings - 通过连接环的端点可将非闭合环闭合。
- Empty parts - 删除 null 或空的部分。
- Duplicate vertex - 删除其中一个折点。
- Mismatched attributes - 更新 z 或 m 坐标以实现匹配。
- Discontinuous parts - 根据现有的不连续部分创建多部分。
- Empty Z values:将 z 的值设置为 0。
- Bad envelope - 更新要素的包络矩形以实现更正。
应用一种修复后,此工具将重新评估所得几何,如果发现了其他问题,将执行该问题的相关修复。例如,修复具有 Incorrect ring ordering 问题的几何结果可能会生成具有 Null geometry 问题的几何。
bad dataset extent 的修复几何中不存在修复。要解决这一问题,请运行数据集上的重新计算要素类范围工具。
Esri 验证方法通过 Esri 简化方法确保几何在拓扑上是合法的。
OGC 验证方法确保几何符合地理信息的 OpenGIS 执行标准(简单要素访问)第 1 部分:公用架构中定义的 OGC 规范。
使用 OGC 选项修复要素的几何后,任何后续的编辑或修改都可能导致几何不再符合 OGC 规范。修改要素后,运行检查几何工具以检查新几何问题。如有必要,重新运行修复几何工具。
OGC 简化不支持非线性线段,例如贝塞尔曲线、圆弧和椭圆弧。在运行修复几何之前,必须使用输入数据集上的增密工具增密这些类型的段。为避免在运行增密工具时不可逆地更改非线性段,请首先复制数据,然后使用副本上的修复几何。要确定您的数据是否具有非线性线段,请使用添加几何属性工具。
警告:
此工具会修改输入数据。有关详细信息以及避免数据被意外更改的策略,请参阅不创建输出数据集的工具。
语法
RepairGeometry(in_features, {delete_null}, {validation_method})
参数 | 说明 | 数据类型 |
in_features | 将处理的要素类或图层。 | Feature Layer |
delete_null (可选) | 指定要在空几何上执行的操作。
| Boolean |
validation_method (可选) | 指定将使用哪种几何验证方法来识别几何问题。
| String |
派生输出
名称 | 说明 | 数据类型 |
out_feature_class | 更新后的输入要素。 | 要素图层 |
代码示例
以下 Python 窗口脚本演示了如何在即时模式下使用 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)
许可信息
- Basic: 是
- Standard: 是
- Advanced: 是