Multiplies the Z values of the geometries of the input Z dataset with an user specified factor.
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. |
ETSPath used in the table below is the full path to ETSRun.exe (E.G. "C:\Program Files\ETSpatial Techniques\ETSurface\ETSRun.exe")
| 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: