Multiply Zs

Running programmatically

Multiplies the Z values of the geometries of the input Z dataset with an user specified factor.

Inputs:

Outputs:

Notes:

Running Programmatically

(Go to TOP)

Parameters

Expression Explanation
Function Name MultiplyFeatureZs
<input dataset> A String - full path to the input dataset.
<output dataset> A String - the full path to the output dataset.
<multiply value> A Number representing the multiply value.

Running the function

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

MultiplyWith
Language Syntax
Python subprocess.call([ETSPath, "MultiplyFeatureZs", "input dataset", "output dataset", "multiply value"])
.NET using ETSRun.exe StartInfo.FileName = ETSPath
StartInfo.Arguments = "MultiplyFeatureZs" "input dataset" "output dataset" "multiply value"
.NET using ETSOutX.dll MultiplyFeatureZs(input dataset, output dataset, multiply value)
ArcPy arcpy.MultiplyFeatureZs("input dataset", "output dataset", "multiply value")

Notes:

(Go to TOP)