ラバーシート リンクの生成(Generate Rubbersheet Links) (編集)

ライセンス レベル:BasicStandardAdvanced

サマリ

ソース ライン フィーチャがターゲット ライン フィーチャと空間的に一致する場所を検索し、ソースの位置からそれに対応するターゲットの位置へ、ラバーシートを行うためのリンクを表すラインを生成します。

Generate Rubbersheet Links

使用法

構文

GenerateRubbersheetLinks_edit (source_features, target_features, out_feature_class, search_distance, {match_fields}, {out_match_table})
パラメータ説明データ タイプ
source_features

ラバーシート リンクを生成するためのソース フィーチャになるライン フィーチャ。すべてのリンクは、ソース フィーチャから始まります。

Feature Layer
target_features

ラバーシート リンクを生成するためのターゲット フィーチャになるライン フィーチャ。すべてのリンクは、一致するターゲット フィーチャで終わります。

Feature Layer
out_feature_class

標準のラバーシート リンクを表すラインが格納される出力フィーチャクラス。

Feature Class
search_distance

一致候補の検索に使用される距離。ゼロより大きい距離を指定する必要があります。優先的に適用される単位を選択することができます。デフォルトはフィーチャ単位です。

Linear unit
match_fields
[[source_field, target_field],...]
(オプション)

ソース フィーチャおよびターゲット フィーチャのフィールドのリスト。これを指定した場合、各フィールドのペアについて一致候補がチェックされ、正しい一致を決定できます。

Value Table
out_match_table
(オプション)

フィーチャの完全な照合情報が格納される出力テーブル。

Table

コードのサンプル

GenerateRubbersheetLinks(ラバーシート リンクの生成)の例 1(Python ウィンドウ)

次の Python ウィンドウ スクリプトで、GenerateRubbersheetLinks(ラバーシート リンクの生成)関数をイミディエイト モードで使用する方法を示します。

import arcpy
arcpy.env.workspace = "C:/data"
arcpy.GenerateRubbersheetLinks_edit("source_Roads.shp", "target_Roads.shp", 
                                    "rubbersheet_Links.shp", "25 Feet")
GenerateRubbersheetLinks(ラバーシート リンクの生成)の例 2(スタンドアロン Python スクリプト)

次のスタンドアロン Python スクリプトは、GenerateRubbersheetLinks(ラバーシート リンクの生成)関数をスクリプティング環境に適用する例を示しています。

# Name:        GenerateRubbersheetLinks_example_script2.py
# Description: Generates links for rubbersheeting spatial adjustment. The links go
#              from base road data to newly updated road data. The links are then
#              analyzed for potential errors; they are finally used to adjust the
#              base roads (a copy is made) to better align with the updated roads.
# Author:      Esri
# -----------------------------------------------------------------------

# Import system modules
import arcpy
from arcpy import env

# Set environment settings
env.overwriteOutput = True
env.workspace = r"D:\conflationTools\ScriptExamples\data.gdb"

# Set local variables
sourceFeatures = "baseRoads"
targetFeatures = "updateRoads"
grlOutput = "grlinks_out"
grlOutputPts = "grlinks_out_pnt"

search_distance = "300 Feet"
match_fields = "FULLNAME RD_NAME"

qaLocations = "qa_locations"

# Generate rubbersheet links
arcpy.GenerateRubbersheetLinks_edit(sourceFeatures, targetFeatures, grlOutput, search_distance, match_fields)

# ====================================================================================
# Note 1:  The result of GenerateRubbersheetLinks may contain errors; see tool reference.
#          Inspection and editing may be necessary to ensure correct links before using
#          them for rubbersheeting.
#
#          One of the common errors are intersecting or touching links. Their locations 
#          can be found by the process below.
# ====================================================================================

# Find locations where links intersect or touch; the result contains coincident points
arcpy.Intersect_analysis(grlOutput, qaLocations, "", "", "POINT")

# Delete coincident points
arcpy.DeleteIdentical_management(qaLocations, "Shape")

# ====================================================================================
# Note 2:  At this point you can manually inspect locations in qaLocations; delete or
#          modify links as needed.
# ====================================================================================

# Make a copy of the sourceFeatures for rubbersheeting
arcpy.CopyFeatures_management(sourceFeatures, "sourceFeatures_Copy")


# Use the links for rubbersheeting
arcpy.RubbersheetFeatures_edit("sourceFeatures_Copy", grlOutput, grlOutputPts, "LINEAR")

環境

関連トピック

ライセンス情報

ArcGIS for Desktop Basic: ×
ArcGIS for Desktop Standard: ×
ArcGIS for Desktop Advanced: ○
5/10/2014