ArcGIS Desktop

  • ArcGIS Pro
  • ArcMap

  • My Profile
  • Help
  • Sign Out
ArcGIS Desktop

ArcGIS Online

The mapping platform for your organization

ArcGIS Desktop

A complete professional GIS

ArcGIS Enterprise

GIS in your enterprise

ArcGIS Developers

Tools to build location-aware apps

ArcGIS Solutions

Free template maps and apps for your industry

ArcGIS Marketplace

Get apps and data for your organization

  • Documentation
  • Support
Esri
  • Sign In
user
  • My Profile
  • Sign Out

ArcMap

  • Home
  • Get Started
  • Map
  • Analyze
  • Manage Data
  • Tools
  • Extensions

TIN properties

  • Summary
  • Properties
  • Code sample

Summary

The Describe function returns the following properties for TINs. Dataset Properties are also supported.

A TIN returns a dataType of "Tin".

Properties

PropertyExplanationData Type
fields
(Read Only)

A Python List containing Field objects for the TIN dataset

Field
hasEdgeTagValues
(Read Only)

Indicates whether the TIN dataset has edge tag values

Boolean
hasNodeTagValues
(Read Only)

Indicates whether the TIN dataset has node tag values

Boolean
hasTriangleTagValues
(Read Only)

Indicates whether the TIN dataset has triangle tag values

Boolean
isDelaunay
(Read Only)

Indicates whether the TIN dataset was constructed using Delaunay triangulation

Boolean
ZFactor
(Read Only)

Multiplication factor applied to all z-values in a TIN to provide unit congruency between coordinate components

Integer

Code sample

TIN properties example (stand-alone script)

The following stand-alone script displays properties for a TIN. It also prints all the field names for the TIN.

import arcpy

# Create a Describe object
#
desc = arcpy.Describe("C:/data/antelope_island")

# Print TIN properties
print "%-21s %s" % ("HasEdgeTagValues:", desc.hasEdgeTagValues)
print "%-21s %s" % ("HasNodeTagValues:", desc.hasNodeTagValues)
print "%-21s %s" % ("HasTriangleTagValues:", desc.hasTriangleTagValues)
print "%-21s %s" % ("IsDelaunay:", desc.isDelaunay)
print "%-21s %s" % ("ZFactor:", desc.ZFactor)

# Print the field names in the TIN
print "\nFields in the TIN:"
for field in desc.fields:
    print "\t%s" % field.name

ArcGIS Desktop

  • Home
  • Documentation
  • Support

ArcGIS

  • ArcGIS Online
  • ArcGIS Desktop
  • ArcGIS Enterprise
  • ArcGIS
  • ArcGIS Developer
  • ArcGIS Solutions
  • ArcGIS Marketplace

About Esri

  • About Us
  • Careers
  • Esri Blog
  • User Conference
  • Developer Summit
Esri
Tell us what you think.
Copyright © 2021 Esri. | Privacy | Legal