ラベル | 説明 | データ タイプ |
イベント フィーチャクラス | LRS に登録されている既存のイベント フィーチャクラスまたはフィーチャ レイヤー。 | Feature Layer |
派生した出力
ラベル | 説明 | データ タイプ |
出力イベント フィーチャクラス | イベントの更新されたフィーチャ レイヤー。 | Feature Layer |
登録済みの LRS イベントの測点フィールドを無効にします。
ArcGIS Pipeline Referencing イベント データ モデルでの測点またはArcGIS Roads and Highways イベント データ モデルでの測点の詳細
このツールを実行する前に、イベントの測点フィールドを有効にしておく必要があります。
ラベル | 説明 | データ タイプ |
イベント フィーチャクラス | LRS に登録されている既存のイベント フィーチャクラスまたはフィーチャ レイヤー。 | Feature Layer |
ラベル | 説明 | データ タイプ |
出力イベント フィーチャクラス | イベントの更新されたフィーチャ レイヤー。 | Feature Layer |
arcpy.locref.DisableStationingFields(in_feature_class)
名前 | 説明 | データ タイプ |
in_feature_class | LRS に登録されている既存のイベント フィーチャクラスまたはフィーチャ レイヤー。 | Feature Layer |
名前 | 説明 | データ タイプ |
out_feature_class | イベントの更新されたフィーチャ レイヤー。 | Feature Layer |
次の Python ウィンドウ スクリプトは、イミディエイト モードで DisableStationingFields 関数を使用する方法を示しています。
# Name: DisableStationingFields_Pro_ex1.py
# Description: Disables stationing fields for the registered LRS event.
# Requires: ArcGIS Location Referencing
# Tool variables
in_feature_class = "c:\\LocationReferencing.sde\\LRS\LineEventFeatureClass"
# Execute the tool
arcpy.locref.DisableStationingFields(in_feature_class)
次のスクリプトは、スタンドアロン Python スクリプトで DisableStationingFields 関数を使用する方法を示しています。
# Name: DisableStationingFields_Pro_ex2.py
# Description: Disables stationing fields for the registered LRS event.
# Requires: ArcGIS Location Referencing
# Import arcpy module
import arcpy
# Check out license
arcpy.CheckOutExtension("LocationReferencing")
# Tool variables
in_feature_class = "c:\\APR.gdb\\LRS\LineEventFeatureClass"
# Execute the tool
arcpy.locref.DisableStationingFields(in_feature_class)
# Check in license
arcpy.CheckInExtension('LocationReferencing')