Surface Length (3D Analyst)
サマリ
This tool calculates the surface length for each polyline or polygon in a feature class based on a raster, triangulated irregular network (TIN), or terrain dataset surface.
The surface length information is stored as an attribute of the input feature class.
This is a deprecated tool. To learn more about how this tool works click here to viw archived documentation. This functionality has been added to the Add Surface Information tool.
使用法
-
Use a smaller sampling distance to increase the accuracy of the surface length calculations.
-
Use {out_length_field} to give the length field a custom name.
-
Only polyline and polygon feature classes are valid inputs for this tool.
構文
パラメータ | 説明 | データ タイプ |
in_surface |
The input raster, TIN, or terrain dataset whose values will be used for interpolation. | TIN layer; raster layer; terrain lLayer |
in_feature_class |
The input polygon or polyline feature class. | Feature layer |
out_length_field (オプション) |
The name of the attribute field to contain the surface length. | String |
sample_distance (オプション) |
The surface spacing at which the length is calculated. By default, the sampling distance is the natural densification of a TIN or the cell size of a raster. | Double |
z_factor (オプション) |
The factor multiplied by input surface values to store new values in the length field. The Z factor is used to convert z-units to match x,y units. | Double |
method (オプション) |
The interpolation method. For raster surfaces, the only option is BILINEAR. Select LINEAR or NATURAL_NEIGHBORS. | String |
pyramid_level_resolution (オプション) |
The resolution of the terrain dataset pyramid level to use for geoprocessing. The default is 0, full resolution. | Double |
コードのサンプル
The following Python Window script demonstrates how to use the Near 3D function in immediate mode.
import arcgisscripting gp = arcgisscripting.create() gp.CheckOutExtension("3D") gp.workspace = "C:/data" gp.SurfaceLength_3d("elevation_tin", "lines.shp", "Length3D")