标注 | 说明 | 数据类型 |
交叉点要素类 | 输入 LRS 交叉点要素类或图层。 | Feature Layer |
输出数据集 | 结果将发布到的输出表。 | Table |
时态视图日期 (可选) | 过滤在特定日期之后被编辑的路径,以根据过滤器生成交叉点。 | Date |
使用情况
交叉点要素类参数可以使用创建 LRS 交叉点和生成交叉点工具的 LRS 交叉点输出。
时态视图日期参数是可选的,用于过滤指定时间的路径信息。
参数
arcpy.locref.CalculateIntersectingRouteMeasures(in_intersection_feature_class, out_dataset, {tvd})
名称 | 说明 | 数据类型 |
in_intersection_feature_class | 输入 LRS 交叉点要素类或图层。 | Feature Layer |
out_dataset | 结果将发布到的输出表。 | Table |
tvd (可选) | 过滤在特定日期之后被编辑的路径,以根据过滤器生成交叉点。 | Date |
代码示例
以下 Python 窗口脚本演示了如何使用 CalculateIntersectingRouteMeasures 函数。
# Name: CalculateIntersectingRouteMeasures_Pro_ex1.py
# Description: Creates a table of all the routes and measures at each intersection location in the Python window.
# Requirements: ArcGIS Location Referencing
# Local tool variables
in_intersection_feature_class = r"C:\Data\SampleData.gdb\LRS\Intersection"
out_dataset = r"C:\Data\SampleData.gdb\LRS\IntersectingRouteMeasures"
tvd = "11/23/2022"
# Execute the tool
arcpy.locref.CalculateIntersectingRouteMeasures(in_intersection_feature_class, out_dataset, tvd)
以下示例演示了如何在独立脚本中使用 CalculateIntersectingRouteMeasures 函数。
# Name: CalculateIntersectingRouteMeasures_Pro_ex2.py
# Description: Creates a table of all the routes and measures at each intersection location in a stand-alone script.
# Requirements: ArcGIS Location Referencing
# Import arcpy module
import arcpy
# Check out any necessary licenses
arcpy.CheckOutExtension("LocationReferencing")
# Local tool variables
in_intersection_feature_class = r"C:\Data\SampleData.gdb\LRS\Intersection"
out_dataset = r"C:\Data\SampleData.gdb\LRS\IntersectingRouteMeasures"
tvd = "11/23/2022"
# Execute the tool
arcpy.locref.CalculateIntersectingRouteMeasures(in_intersection_feature_class, out_dataset, tvd)
# Check in licenses
arcpy.CheckInExtension('LocationReferencing')
许可信息
- Basic: 需要 ArcGIS Location Referencing(ArcGIS Pipeline Referencing 或 ArcGIS Roads and Highways)
- Standard: 需要 ArcGIS Location Referencing(ArcGIS Pipeline Referencing 或 ArcGIS Roads and Highways)
- Advanced: 需要 ArcGIS Location Referencing(ArcGIS Pipeline Referencing 或 ArcGIS Roads and Highways)