描述
计算多面体要素的交集,以便生成包含重叠体积的闭合多面体,根据公共表面积生成非闭合多面体要素,或根据相交边生成线要素。
插图
使用方法
确定用于此分析的数据时务必谨慎。高度详细的要素会产生极其复杂的几何,由于它们的折点总数和方向,可能会导致出现显示性能问题。
如果只提供了一个输入要素,将会评估该多面体数据集中各要素的相交情况,如果提供了两个要素,将会确定这两个数据集的要素的相交部分,同时忽略那些只存在于一个输入中的相交情形。
注:
使用两个输入要素时,将在输出中融合来自两个要素的属性。
语法
arcpy.3d.Intersect3D(in_feature_class_1, out_feature_class, {in_feature_class_2}, {output_geometry_type})
参数 | 说明 | 数据类型 |
in_feature_class_1 | 要相交的多面体属性。当只提供一个输入要素图层或要素类时,输出将表示其自身要素的交集。 | Feature Layer |
out_feature_class | 将由此工具生成的要素类。 | Feature Class |
in_feature_class_2 (可选) | 与第一个多面体要素图层或要素类相交的第二个多面体要素图层或要素类(可选)。 | Feature Layer |
output_geometry_type (可选) | 确定创建的相交几何的类型。
| String |
代码示例
下面的示例演示了如何在 Python 窗口中使用此工具。
import arcpy
from arcpy import env
env.workspace = 'C:/data'
arcpy.Intersect3D_3d('inMultipatch1.shp', 'outMultipatch.shp',
'inMultipatch2.shp')
下面的示例演示了如何在独立 Python 脚本中使用此工具。
'''****************************************************************************
Name: Intersect3D Example
Description: This script demonstrates how to use the
Intersect3D tool
****************************************************************************'''
# Import system modules
import arcpy
# Set environment settings
arcpy.env.workspace = 'C:/data'
# Set Local Variables
inMP1 = 'Boston_MP_Small.shp'
inMP2 = 'Boston_MP.shp'
# Ensure output has a unique name
outMP = arcpy.CreateUniqueName('Intersect.shp')
# Execute Intersect 3D
arcpy.Intersect3D_3d(inMP1, outMP, inMP2)
许可信息
- Basic: 需要 3D Analyst
- Standard: 需要 3D Analyst
- Advanced: 需要 3D Analyst