Features To 3D from Raster

Running programmatically

Convert 2D feature classes to 3D feature classes by interpolating the Z values from a reference Raster dataset.

Inputs:

Outputs:

Notes:

Running Programmatically

(Go to TOP)

Parameters

Expression Explanation
Function Name FeaturesTo3DRaster
<input dataset> A String representing the input feature dataset.
<output dataset> A String - the full name of the output dataset.
<reference raster> A String - the full name of the reference Raster dataset.
{sample distance} A Double representing the sample distance.

Running the function

ETGWPath used in the table below is the full path to ETGWRun.exe (E.G. "C:\Program Files\ETSpatial Techniques\ETSurface\ETSRun.exe")

Language Syntax
Python subprocess.call([ETSPath, "FeaturesTo3DRaster", "input dataset", "output dataset", "reference raster", "sample distance"])
.NET using ETSRun.exe StartInfo.FileName = ETSPath
StartInfo.Arguments = "FeaturesTo3DRaster" "input dataset" "output dataset" "reference raster" "sample distance"
.NET using ETSOutX.dll FeaturesTo3DRaster(input dataset, output dataset, reference raster, sample distance)
ArcPy arcpy.FeaturesTo3DRaster("input dataset", "output dataset", "reference raster", "sample distance")

Notes:

(Go to TOP)