标注 | 说明 | 数据类型 |
输入线要素 | 要与多面体要素相交的线要素。 | Feature Layer |
输入多面体要素 | 要与线相交的多面体要素。 | Feature Layer |
连接属性 (可选) | 将与可选输出要素一同存储的输入线要素属性。
| String |
输出点 (可选) | 用于表示 3D 线和多面体之间交点的可选要素。 | Feature Class |
输出线 (可选) | 在与多面体要素的各交点处对输入线进行分割的可选线要素。 | Feature Class |
派生输出
标注 | 说明 | 数据类型 |
交点计数 | 交点数。 | 长整型 |
返回 3D 线和多面体要素之间几何交集的数量,并且还提供用于表示相交点的可选要素,另在这些点处对 3D 线进行分割。
交点计数将在消息窗口中返回,并可在模型或脚本中用于建立后续操作的前提条件。
此工具用于确定 3D 欧氏空间中的交点。此工具不支持 2D 线要素,但通过依据属性实现要素转 3D,可将属性字段中存储了高度定义的 2D 线要素转换为 3D 线要素。
可选点输出用于表示输入线和多面体要素之间的交叉点,并包含下列属性:
可选线输出会在交点处对输入线要素进行分割,并包含下列属性:
如果线与多面体不相交,则直接将线复制到输出中,而且线的 FROM_MP_ID 和 TO_MP_ID 字段将包含 -1。
通过连接属性参数使用输出线要素类可在可选输出要素中引用原始线的属性值。
标注 | 说明 | 数据类型 |
输入线要素 | 要与多面体要素相交的线要素。 | Feature Layer |
输入多面体要素 | 要与线相交的多面体要素。 | Feature Layer |
连接属性 (可选) | 将与可选输出要素一同存储的输入线要素属性。
| String |
输出点 (可选) | 用于表示 3D 线和多面体之间交点的可选要素。 | Feature Class |
输出线 (可选) | 在与多面体要素的各交点处对输入线进行分割的可选线要素。 | Feature Class |
标注 | 说明 | 数据类型 |
交点计数 | 交点数。 | 长整型 |
arcpy.ddd.Intersect3DLineWithMultiPatch(in_line_features, in_multipatch_features, {join_attributes}, {out_point_feature_class}, {out_line_feature_class})
名称 | 说明 | 数据类型 |
in_line_features | 要与多面体要素相交的线要素。 | Feature Layer |
in_multipatch_features | 要与线相交的多面体要素。 | Feature Layer |
join_attributes (可选) | 将与可选输出要素一同存储的输入线要素属性。
| String |
out_point_feature_class (可选) | 用于表示 3D 线和多面体之间交点的可选要素。 | Feature Class |
out_line_feature_class (可选) | 在与多面体要素的各交点处对输入线进行分割的可选线要素。 | Feature Class |
名称 | 说明 | 数据类型 |
out_intersection_count | 交点数。 | 长整型 |
下面的示例演示了如何在 Python 窗口中使用此工具。
arcpy.env.workspace = 'C:/data'
arcpy.Intersect3DLineWithMultiPatch_3d('inLine.shp', 'inMultipatch.shp',
'IDS_ONLY', 'outPts.shp', 'outLine.shp')
下面的示例演示了如何在独立 Python 脚本中使用此工具。
'''****************************************************************************
Name: Intersect3DLineWithMultiPatch Example
Description: This script demonstrates how to
use the Intersect3DLine tool.
****************************************************************************'''
# Import system modules
import arcpy
# Set environment settings
arcpy.env.workspace = 'C:/data'
# Set Local Variables
inLineFC = 'sample.gdb/lines_3d'
inMP = 'sample.gdb/test_MP'
# Ensure a unique name is produced for output files
outPoint = arcpy.CreateUniqueName('OutPt_3DIntersect', 'sample.gdb')
outLine = arcpy.CreateUniqueName('OutLine_3DIntersect', 'sample.gdb')
# Execute Intersect 3D Line with Multipatch
arcpy.Intersect3DLineWithMultiPatch_3d(inLineFC, inMP, 'IDS_ONLY',
outPoint, outLine)