TIN Aspect

Running programmatically

Calculates the aspect (compass direction of the slope) for each TIN Triangle. Groups the triangles based on their Aspect category and creates a polygon dataset with Aspect categories.

Inputs:

Outputs:

Notes:

Example:

Output - default breaks:

Running Programmatically

(Go to TOP)

Parameters

Expression Explanation
Function Name TinAspect
<input tin> A String representing the input TIN dataset.
<output dataset> A String - the full name of the output polygon dataset.
{breaks file} A String - the full path to the class breaks file.

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, "TinAspect", "input tin", "output dataset", "breaks file"])
.NET using ETSRun.exe StartInfo.FileName = ETSPath
StartInfo.Arguments = "TinAspect" "input tin" "output dataset" "breaks file"
.NET using ETSOutX.dll TinAspect(input tin, output dataset, breaks file)
ArcPy arcpy.TinAspect("input tin", "output dataset", "breaks file")

Notes:

(Go to TOP)