标注 | 说明 | 数据类型 |
输入要素 | 要分割的输入线要素。 | Feature Layer |
点要素 | 包含分割输入线所用位置的输入点要素。 | Feature Layer |
输出要素类 | 要创建的包含分割线的新要素类。 | Feature Class |
搜索半径 (可选) | 用于根据与点要素的邻近性分割线。输入线搜索距离范围内的点将用于在线段上距点最近的位置处分割线。 如果未指定此参数,将使用最近的一个点分割线要素。如果已指定了半径,将使用此半径内的所有点来分割线。 | Linear Unit |
摘要
根据交叉点或与点要素的邻近性分割线要素。
使用情况
输入要素必须为线。
如果未指定搜索半径 (Python 中的 search_radius),将使用最近的点分割线要素。如果已指定搜索半径,将使用搜索半径内所有的点来分割线。
参数
arcpy.management.SplitLineAtPoint(in_features, point_features, out_feature_class, {search_radius})
名称 | 说明 | 数据类型 |
in_features | 要分割的输入线要素。 | Feature Layer |
point_features | 包含分割输入线所用位置的输入点要素。 | Feature Layer |
out_feature_class | 要创建的包含分割线的新要素类。 | Feature Class |
search_radius (可选) | 用于根据与点要素的邻近性分割线。输入线搜索距离范围内的点将用于在线段上距点最近的位置处分割线。 如果未指定此参数,将使用最近的一个点分割线要素。如果已指定了半径,将使用此半径内的所有点来分割线。 | Linear Unit |
代码示例
本例显示了如何在 Python 窗口中运行 SplitLineAtPoint tool 工具。
import arcpy
arcpy.env.workspace = "C:/data"
arcpy.SplitLineAtPoint_management("streets.shp", "events.shp",
"splitline_out.shp", "20 Meters")
本例显示了如何使用 Python 脚本运行 SplitLineAtPoint。
#Name: SplitLineAtPoint_Example.py
# Description: split line features based upon near point features; Search Distance is in linear
# unit meters
import arcpy
arcpy.env.workspace = "C:/data"
inFeatures = "streets.shp"
pointFeatures = "events.shp"
outFeatureclass = "splitline_out.shp"
searchRadius = "20 Meters"
arcpy.SplitLineAtPoint_management(inFeatures, pointFeatures, outFeatureclass,
searchRadius)
环境
当前工作空间, 范围, 输出坐标系, XY 分辨率, XY 容差, 输出包含 M 值, M 分辨率, M 容差, 输出包含 Z 值, 默认输出 Z 值, Z 分辨率, Z 容差, 输出 M 属性域, 输出 Z 属性域
特殊情况
许可信息
- Basic: 否
- Standard: 否
- Advanced: 是