ラベル | 説明 | データ タイプ |
LRS イベント フィーチャクラス | LRS に登録されている既存のイベント フィーチャクラスまたはフィーチャ レイヤー。 | Feature Layer |
派生した出力
ラベル | 説明 | データ タイプ |
更新された入力フィーチャクラス | イベントの更新されたフィーチャ レイヤー。 | Feature Layer |
派生ネットワークのルート ID、ルート名、およびメジャー フィールドを格納するフィールドを無効にします。
このツールを実行しても、派生メジャー フィールドは削除されず、派生メジャー フィールドの情報が Lrs_Metadata テーブルから削除されるだけです。
このツールは、空のイベント フィーチャクラスまたはレコードがすでに読み込まれているイベント フィーチャクラスに対して使用できます。
ラベル | 説明 | データ タイプ |
LRS イベント フィーチャクラス | LRS に登録されている既存のイベント フィーチャクラスまたはフィーチャ レイヤー。 | Feature Layer |
ラベル | 説明 | データ タイプ |
更新された入力フィーチャクラス | イベントの更新されたフィーチャ レイヤー。 | Feature Layer |
arcpy.locref.DisableDerivedMeasureFields(in_feature_class)
名前 | 説明 | データ タイプ |
in_feature_class | LRS に登録されている既存のイベント フィーチャクラスまたはフィーチャ レイヤー。 | Feature Layer |
名前 | 説明 | データ タイプ |
out_feature_class | イベントの更新されたフィーチャ レイヤー。 | Feature Layer |
次の Python ウィンドウ スクリプトは、イミディエイト モードで DisableDerivedMeasureFields ツールを使用する方法を示しています。
# Name: DisableDerivedMeasureFields_ex1.py
# Description: Disable fields that store the derived network route id, route name and measure fields.
# Requires: ArcGIS Location Referencing
# Check out license
arcpy.CheckOutExtension("LocationReferencing")
# tool variables
in_feature_class = r"c:\DisableDerivedMeasureFields\Py\APR.gdb\LRS\EventFeatureClass"
# Set current workspace
arcpy.env.workspace = r"c:\DisableDerivedMeasureFields\Py\APR.gdb\LRS\EventFeatureClass"
# Execute the tool
arcpy.locref.DisableDerivedMeasureFields(in_feature_class)
# Check in license
arcpy.CheckInExtension('LocationReferencing')
次のスクリプトは、スタンドアロン Python スクリプトで DisableDerivedMeasureFields ツールを使用する方法を示しています。
# Name: DisableDerivedMeasureFields_ex2.py
# Description: Disable fields that store the derived network route id, route name and measure fields.
# Requires: ArcGIS Location Referencing
# Import arcpy module
import arcpy
# Check out license
arcpy.CheckOutExtension("LocationReferencing")
# Local variables:
in_feature_class = r"c:\DisableDerivedMeasureFields\Py\APR.gdb\LRS\EventFeatureClass"
# Execute the tool
arcpy.locref.DisableDerivedMeasureFields(in_feature_class)
# Check in license
arcpy.CheckInExtension('LocationReferencing')