计算相交路径测量值 (位置参考)

摘要

可在每个交叉点位置创建所有路径和测量值的表。

了解有关Pipeline Referencing 中生成和更新交叉点Roads and Highways 中生成和更新交叉点的详细信息。

使用情况

  • 交叉点要素类参数可以使用创建 LRS 交叉点生成交叉点工具的 LRS 交叉点输出。

  • 时态视图日期参数是可选的,用于过滤指定时间的路径信息。

参数

标注说明数据类型
交叉点要素类

输入 LRS 交叉点要素类或图层。

Feature Layer
输出数据集

结果将发布到的输出表。

Table
时态视图日期
(可选)

过滤在特定日期之后被编辑的路径,以根据过滤器生成交叉点。

Date

arcpy.locref.CalculateIntersectingRouteMeasures(in_intersection_feature_class, out_dataset, {tvd})
名称说明数据类型
in_intersection_feature_class

输入 LRS 交叉点要素类或图层。

Feature Layer
out_dataset

结果将发布到的输出表。

Table
tvd
(可选)

过滤在特定日期之后被编辑的路径,以根据过滤器生成交叉点。

Date

代码示例

CalculateIntersectingRouteMeasures 示例 1(Python 窗口)

以下演示了如何在 Python 窗口中使用 CalculateIntersectingRouteMeasures 函数。

# Name: CalculateIntersectingRouteMeasures_Pro_ex2.py
# Description: Creates a table of all the routes and measures at each intersection location.
# 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.CalculateRouteConcurrencies(in_route_features, out_dataset, tvd)
CalculateIntersectingRouteMeasures 示例 2(独立脚本)

以下示例演示了如何在独立脚本中使用 CalculateIntersectingRouteMeasures 函数。

# Name: CalculateIntersectingRouteMeasures_Pro_ex1.py
# Description: Creates a table of all the routes and measures at each intersection location.
# 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.CalculateIntersectingRouteFeatures(in_route_features, 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)

相关主题