Creates a new TIN by subtracting the reference TIN from the input TIN
Notes :
Parameters
| Expression | Explanation |
|---|---|
| Function Name | TinDifference |
| <input tin> | A String representing the input TIN. |
| <reference tin> | A String representing the reference TIN. |
| <output tin> | A String - the full name of the output TIN. |
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, "TinDifference", "input tin", "reference tin", "output tin"]) |
| .NET using ETSRun.exe | StartInfo.FileName = ETSPath StartInfo.Arguments = "TinDifference" "input tin" "reference tin" "output tin" |
| .NET using ETSOutX.dll | TinDifference(input tin, reference tin, output tin) |
| ArcPy | arcpy.TinDifference("input tin", "reference tin", "output tin") |
Notes:
<> - required parameter
{} - optional parameter
The argument separator for StartInfo.Arguments is space. If a string might contain a space, you need to double quote it.