Default TIN Storage Version (Environment setting)
Tools that honor the Default TIN Storage Version environment will output TIN surfaces in the specified version.
Usage notes
- When constructing TIN surfaces in versions of ArcGIS earlier than 10, make sure to set this environment setting to PRE_10.0.
Dialog syntax
CURRENT—Can be either conforming Delaunay triangulation or constrained Delaunay triangulation. This option also adds support for additional spatial references. This is the default.
PRE_10.0—Supports Delaunay conforming triangulations for constructing TINs.
Python syntax
arcpy.env.tinSaveVersion = tin_save_version
| Name | Explanation |
|---|---|
|
tin_save_version |
Specifies the triangulation versions that will be used when building a TIN.
|
Scripting syntax
import arcpy
# Set the tinSaveVersion environment to CURRENT
arcpy.env.tinSaveVersion = "CURRENT"