ArcGIS Desktop

  • ArcGIS Pro
  • ArcMap

  • My Profile
  • Hilfe
  • Sign Out
ArcGIS Desktop

ArcGIS Online

Die Mapping-Plattform für Ihre Organisation

ArcGIS Desktop

Ein vollständiges professionelles GIS

ArcGIS Enterprise

GIS in Ihrem Unternehmen

ArcGIS Developers

Werkzeuge zum Erstellen standortbezogener Apps

ArcGIS Solutions

Kostenlose Karten- und App-Vorlagen für Ihre Branche

ArcGIS Marketplace

Rufen Sie Apps und Daten für Ihre Organisation ab.

  • Dokumentation
  • Support
Esri
  • Anmelden
user
  • Eigenes Profil
  • Abmelden

ArcMap

  • Startseite
  • Erste Schritte
  • Karte
  • Analysieren
  • Verwalten von Daten
  • Werkzeuge
  • Erweiterungen

TIN properties

  • Zusammenfassung
  • Eigenschaften
  • Codebeispiel

Zusammenfassung

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

A TIN returns a dataType of "Tin".

Eigenschaften

EigenschaftErklärungDatentyp
fields
(Nur lesen)

A Python List containing Field objects for the TIN dataset

Field
hasEdgeTagValues
(Nur lesen)

Indicates whether the TIN dataset has edge tag values

Boolean
hasNodeTagValues
(Nur lesen)

Indicates whether the TIN dataset has node tag values

Boolean
hasTriangleTagValues
(Nur lesen)

Indicates whether the TIN dataset has triangle tag values

Boolean
isDelaunay
(Nur lesen)

Indicates whether the TIN dataset was constructed using Delaunay triangulation

Boolean
ZFactor
(Nur lesen)

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

Integer

Codebeispiel

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

  • Startseite
  • Dokumentation
  • Support

ArcGIS

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

Über Esri

  • Über uns
  • Karriere
  • Esri Blog
  • User Conference
  • Developer Summit
Esri
Wir sind an Ihrer Meinung interessiert.
Copyright © 2021 Esri. | Datenschutz | Rechtliches