ジオメトリの修正(Repair Geometry) (データ管理)

ライセンス レベル:BasicStandardAdvanced

サマリ

フィーチャクラスの各フィーチャにジオメトリの問題があるかどうかを検査します。ジオメトリの問題が検出されると、適切な修正が適用され、対象のフィーチャと発生した問題を識別する 1 行分の説明が出力されます。

有効な入力としては、シェープファイル、パーソナル ジオデータベース フィーチャクラス、ファイル ジオデータベース フィーチャクラスなどがあります。

ジオメトリの確認と修正に関する詳細

使用法

構文

RepairGeometry_management (in_features, {delete_null})
パラメータ説明データ タイプ
in_features

修正対象のフィーチャクラスまたはレイヤ。入力として有効なフィーチャとしては、シェープファイル、パーソナル ジオデータベース フィーチャクラス、ファイル ジオデータベース フィーチャクラスなどがあります。

Feature Layer
delete_null
(オプション)

NULL ジオメトリに対して実行するアクションの内容を指定します。

  • DELETE_NULL NULL ジオメトリが格納されているフィーチャを入力から削除します。これがデフォルトです。
  • KEEP_NULL NULL ジオメトリが格納されているフィーチャを入力から削除しません。
Boolean

コードのサンプル

Repair Geometry(ジオメトリの修正)の例(Python ウィンドウ)

次の Python ウィンドウ スクリプトは、イミディエイト モードで RepairGeometry(ジオメトリの修正)関数を使用する方法を示しています。

import arcpy
arcpy.RepairGeometry_management ("c:/data/sketchy.shp")
Repair Geometry(ジオメトリの修正)の例 2(スタンドアロン スクリプト)

次のスタンドアロン スクリプトは、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 
# Author: ESRI

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)

環境

関連トピック

ライセンス情報

ArcGIS for Desktop Basic: ○
ArcGIS for Desktop Standard: ○
ArcGIS for Desktop Advanced: ○
7/28/2014