Disponible con licencia de Location Referencing.
Resumen
Re-creates shapes and applies calibration changes for route features in an LRS Network.
Uso
Input the LRS Network whose features need to be regenerated or need calibration changes applied based on the route shape from the centerline feature class, and measure values from the calibration point feature class.
Sintaxis
GenerateRoutes_locref (in_route_features, {record_calibration_changes})
Parámetro | Explicación | Tipo de datos |
in_route_features | The LRS Network for which route shapes will be regenerated and calibration changes will be applied. | Feature Layer |
record_calibration_changes (Opcional) |
| Boolean |
Salida derivada
Nombre | Explicación | Tipo de datos |
out_route_features | Updated route feature layer. | Feature Layer |
out_derived_route_features | The updated LRS Network to which route shapes have been generated and calibration changes have been applied. | Feature Layer |
out_details_file | A text file that details the routes that were updated in the LRS Network feature class. | Text File |
Muestra de código
GenerateRoutes example 1 (Python window)
Demonstrates how to use GenerateRoutes in immediate mode.
# Import arcpy module
import arcpy
# Local variables
in_route_features = r'C:\Data\PipelineReferencing.gdb\LineNetwork'
record_calibration_changes = "NO_RECORD_CALIBRATION_CHANGES"
# Set current workspace
arcpy.env.workspace = "C:/Data/PipelineReferencing.gdb"
# Execute the tool
arcpy.GenerateRoutes_locref(in_route_features, record_calibration_changes)
GenerateRoutes example 2 (stand-alone script)
Demonstrates how to use GenerateRoutes in a stand-alone Python script.
# Name: GenerateRoutes_ex2.py
# Description: Recreates shapes and applies calibration changes for route features in a LRS Network.
# Requirements: ArcGIS Pipeline Referencing
# Import arcpy module
import arcpy
# Check out any necessary licenses
arcpy.CheckOutExtension("LocationReferencing")
# Local variables
in_route_features = r'C:\Data\PipelineReferencing.gdb\LineNetwork'
record_calibration_changes = "RECORD_CALIBRATION_CHANGES"
# Execute the tool
arcpy.GenerateRoutes_locref(in_route_features, record_calibration_changes)
Entornos
Información sobre licencias
- ArcGIS Desktop Basic: Requiere ArcGIS Pipeline Referencing
- ArcGIS Desktop Standard: Requiere ArcGIS Pipeline Referencing
- ArcGIS Desktop Advanced: Requiere ArcGIS Pipeline Referencing