概要
ターン フィーチャのジオメトリを使用して、ターン フィーチャクラス内のすべてのエッジ参照を更新します。このツールは、元のエッジが編集されたため、ターンについて指定されている ID によってターンで使用されているエッジを検索できなくなった場合に便利です。
使用法
このツールは、ターン フィーチャとネットワーク ソースのエッジ フィーチャの空間的な一致に基づいて、ターン フィーチャクラスの Edge#FID フィールド値を更新します。
ターン フィーチャの更新中に発生したエラーは、TEMP システム変数で定義されたディレクトリに書き込まれるエラー ファイル内に出力されます。エラー ファイルの絶対パス名が警告メッセージとして出力されます。
構文
UpdateByGeometry(in_turn_features)
パラメーター | 説明 | データ タイプ |
in_turn_features | 更新されるターン フィーチャクラス。 | Feature Layer |
派生した出力
名前 | 説明 | データ タイプ |
out_turn_features | 更新されたターン フィーチャクラス | フィーチャ レイヤー |
コードのサンプル
UpdateByGeometry (ジオメトリによる更新) の例 1 (Python ウィンドウ)
すべてのパラメーターを使用してツールを実行します。
turns = "C:/Data/SanFrancisco.gdb/Transportation/RestrictedTurns"
arcpy.na.UpdateByGeometry(turns)
UpdateByGeometry (ジオメトリによる更新) の例 2 (スタンドアロン スクリプト)
次の Python スクリプトは、スタンドアロン スクリプトで UpdateByGeometry ツールを使用する方法を示しています。
# Name: UpdateByGeometry_ex02.py
# Description: Update edge references in the turn feature class using the
# geometry of turn features and re-build the network dataset.
# Requirements: Network Analyst Extension
#Import system modules
import arcpy
from arcpy import env
#Check out the Network Analyst extension license
arcpy.CheckOutExtension("Network")
#Set environment settings
env.workspace = "C:/Data/SanFrancisco.gdb"
#Set local variables
turn_features = "RestrictedTurns"
network = "Transportation/Streets_ND"
#Update the edge references in turn features using the geometry
arcpy.na.UpdateByGeometry(turn_features)
#Since we have modified the edge references for turn sources, we should rebuild
#the network dataset so that the turn features are correctly interpreted by the
#network dataset
arcpy.na.BuildNetwork(network)
print("Script completed successfully.")
環境
ライセンス情報
- Basic: はい
- Standard: はい
- Advanced: はい