ジオメトリによる更新(Update by Geometry) (Network Analyst)
サマリ
ターン フィーチャのジオメトリを使用して、ターン フィーチャクラス内のすべてのエッジ参照を更新します。このツールは、元のエッジが編集されたため、ターンについて指定されている ID によってターンで使用されているエッジを検索できなくなった場合に便利です。
使用法
-
このツールは、ターン フィーチャとネットワーク ソースのエッジ フィーチャの空間的な一致に基づいて、ターン フィーチャクラスの Edge#FID フィールド値を更新します。
-
ターン フィーチャの更新中に発生したエラーは、TEMP システム変数で定義されたディレクトリに書き込まれるエラー ファイル内に出力されます。エラー ファイルの絶対パス名が警告メッセージとして出力されます。
構文
UpdateByGeometry_na (in_turn_features)
パラメータ | 説明 | データ タイプ |
in_turn_features |
更新されるターン フィーチャクラス。 | Feature Layer |
コードのサンプル
UpdateByGeometry(ジオメトリによる更新)の例 1(Python ウィンドウ)
すべてのパラメータを使用してツールを実行します。
import arcpy
arcpy.env.workspace = "C:/ArcTutor/Network Analyst/Tutorial/SanFrancisco.gdb"
arcpy.na.UpdateByGeometry("Transportation/RestrictedTurns")
UpdateByGeometry(ジオメトリによる更新)の例 2(スタンドアロン Python スクリプト)
次の 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
inTurnFeatures = "RestrictedTurns"
inNetworkDataset = "Transportation/Streets_ND"
#update the edge references in turn features using the geometry
arcpy.na.UpdateByGeometry(inTurnFeatures)
#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(inNetworkDataset)
print "Script completed successfully."
関連トピック
ライセンス情報
ArcGIS for Desktop Basic: ○
ArcGIS for Desktop Standard: ○
ArcGIS for Desktop Advanced: ○
9/14/2013