描述
Regenerates shapes for event features registered with an LRS Network.
使用方法
An LRS dataset is required to run this tool.
Use the event whose features need to be regenerated based on the route and measure of the event as input.
When conflict prevention is enabled for the tool, any events being generated by the tool will be locked.
- While working in the default version, the locks acquired are released automatically when the tool completes.
- While working in a child version, the locks acquired will remain in On Post status when the tool completes. The lock owner must post or delete the version to release the locks.
- While working in a child version, if the execution of the tool is canceled by interruption, the locks are acquired and will remain in releasable status when the tool completes.
语法
arcpy.locref.GenerateEvents(in_event_layer)
参数 | 说明 | 数据类型 |
in_event_layer | The event for which shapes will be regenerated. | Feature Layer |
派生输出
名称 | 说明 | 数据类型 |
out_event_layers | The updated events feature layer. | Feature Layer |
代码示例
GenerateEvents example 1 (Python window)
The following Python window script demonstrates how to use the GenerateEvents function in the Python window.
# tool variables
in_event_layer = "Event"
# set current workspace
arcpy.env.workspace = "C:/data/Outputs.gdb"
# execute the tool
arcpy.GenerateEvents_locref(in_event_layer)
GenerateEvents example 2 (stand-alone script)
The following Python script demonstrates how to use the GenerateEvents function in a stand-alone Python script.
# Name: GenerateEvents_standalone_ex.py
# Description: Re-creates shapes for event features registered with a LRS Network
# Import arcpy module
import arcpy
# Check out any necessary licenses
arcpy.CheckOutExtension("Highways")
# Local variables
# input Network layer
in_event_layer = "C:\\RoadsAndHighways\Data\RH_DOT.gdb\SpeedLimit"
# Process: Generate Events
arcpy.GenerateEvents_locref(in_event_layer)
环境
许可信息
- Basic: 需要 Roads and Highways
- Standard: 需要 Roads and Highways
- Advanced: 需要 Roads and Highways