3D 线与表面相交 (3D Analyst)

许可等级:BasicStandardAdvanced

摘要

计算 3D 线要素与一个或多个表面的几何交集,并以分割线要素和点的形式返回交集。

插图

Intersect 3D Line with Surface graphic

用法

语法

Intersect3DLineWithSurface_3d (in_surfaces, in_line_features, out_line_feature_class, {out_point_feature_class})
参数说明数据类型
in_surfaces

指定一个或多个输入栅格或 TIN 表面来构造几何交集。

Raster Layer; TIN Layer
in_line_features

输入 3D 线要素。

Feature Layer
out_line_feature_class

包含在交叉点处分割的输入线副本的输出线要素类。

Feature Class
out_point_feature_class
(可选)

包含交叉点的可选点要素类。

Feature Class

代码实例

Intersect3DLineWithSurface 示例 1(Python 窗口)

下面的示例演示了如何在 Python 窗口中使用此工具:

import arcpy
from arcpy import env

arcpy.CheckOutExtension('3D')
env.workspace = 'C:/data'
arcpy.Intersect3DLineWithSurface_3d('lines.shp', 'dtm_tin; elev.tif', 
                                  'intersect_lines.shp', 'intersect_pts.shp')
Intersect3DLineWithSurface 示例 2(独立脚本)

下面的示例演示了如何在独立 Python 脚本中使用此工具:

import arcpy
from arcpy import env

arcpy.CheckOutExtension('3D')
env.workspace = 'C:/data'
arcpy.Intersect3DLineWithSurface_3d('lines.shp', 'dtm_tin; elev.tif', 
                                  'intersect_lines.shp', 'intersect_pts.shp')

环境

相关主题

许可信息

ArcGIS for Desktop Basic:需要 3D Analyst
ArcGIS for Desktop Standard:需要 3D Analyst
ArcGIS for Desktop Advanced:需要 3D Analyst
9/15/2013