Surface Spot (3D Analyst)

许可等级:BasicStandardAdvanced

摘要

Calculates surface values for each point of a point feature class by interpolating from a raster, TIN, or terrain dataset surface.

Calculated values are added to the input feature class attributes.

法律声明法律声明:

This is a deprecated tool. To learn more about how this tool works click here to view archived documentation. This functionality has been added to the Add Surface Information tool.

插图

Surface Spot illustration

用法

语法

SurfaceSpot_3d (in_surface, in_feature_class, {out_spot_field}, {z_factor}, {method}, {pyramid_level_resolution})
参数说明数据类型
in_surface

The input raster, TIN, or Terrain dataset surface to be used for interpolation.

Terrain Layer; TIN Layer; Raster Layer
in_feature_class

The input point feature class to which the interpolated values will be added.

Feature Layer
out_spot_field
(可选)

The name of the attribute field to be added to the input feature class. By default, the name is Spot.

String
z_factor
(可选)

The factor multiplied by the surface values to convert them to new values added to the input feature class. Used to convert z units to match x,y units.

Double
method
(可选)

Algorithm used to calculate surface values.

String
pyramid_level_resolution
(可选)

The resolution of the terrain dataset pyramid level to use for geoprocessing. The default is 0, full resolution.

Double

代码实例

Surface Spot example 1 (Python window)

The following Python Window script demonstrates how to use the Surface Spot function in immediate mode.

import arcgisscripting
gp = arcgisscripting.create()

gp.CheckOutExtension("3D")
gp.workspace = "C:/data"
gp.SurfaceSpot_3d("elevation_tin", "points.shp", "SPOT", 3.28)

环境

许可信息

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