描述
Disables fields that store the derived network route ID, route name, and measure fields.
This tool doesn't delete the derived measure fields; it only removes the derived measure fields' information from the Lrs_Metadata table.
使用方法
You can use the tool on an empty event feature class or an event feature class that has loaded records.
语法
DisableDerivedMeasureFields(in_feature_class)
参数 | 说明 | 数据类型 |
in_feature_class | An existing event feature class or feature layer that is registered to an LRS. | Feature Layer |
派生输出
名称 | 说明 | 数据类型 |
out_feature_class | The updated feature layer for the event. | Feature Layer |
代码示例
The following Python window script demonstrates how to use the DisableDerivedMeasureFields tool in immediate mode.
# 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")
# Import Location Referencing toolbox
arcpy.ImportToolbox("C:\Program Files\ArcGIS\Pro\Resources\ArcToolBox\Toolboxes\Location Referencing Tools.tbx")
# 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.DisableDerivedMeasureFields_locref(in_feature_class)
# Check in license
arcpy.CheckInExtension('LocationReferencing')
The following script demonstrates how to use the DisableDerivedMeasureFields tool in a stand-alone Python script.
# 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.DisableDerivedMeasureFields_locref(in_feature_class)
# Check in license
arcpy.CheckInExtension('LocationReferencing')
环境
此工具不使用任何地理处理环境。
许可信息
- Basic: 需要 ArcGIS Location Referencing
- Standard: 需要 ArcGIS Location Referencing
- Advanced: 需要 ArcGIS Location Referencing