ArcGIS Desktop

  • ArcGIS Pro
  • ArcMap

  • My Profile
  • ヘルプ
  • Sign Out
ArcGIS Desktop

ArcGIS Online

組織のマッピング プラットフォーム

ArcGIS Desktop

完全なプロ仕様の GIS

ArcGIS Enterprise

エンタープライズ GIS

ArcGIS for Developers

位置情報利用アプリの開発ツール

ArcGIS Solutions

各種業界向けの無料のテンプレート マップおよびテンプレート アプリケーション

ArcGIS Marketplace

組織で使えるアプリとデータを取得

  • ドキュメント
  • サポート
Esri
  • サイン イン
user
  • マイ プロフィール
  • サイン アウト

ArcMap

  • ホーム
  • はじめに
  • マップ
  • 解析
  • データ管理
  • ツール
  • エクステンション

TIN properties

  • 概要
  • プロパティ
  • コードのサンプル

概要

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

A TIN returns a dataType of "Tin".

プロパティ

プロパティ説明データ タイプ
fields
(読み取り専用)

A Python List containing Field objects for the TIN dataset

Field
hasEdgeTagValues
(読み取り専用)

Indicates whether the TIN dataset has edge tag values

Boolean
hasNodeTagValues
(読み取り専用)

Indicates whether the TIN dataset has node tag values

Boolean
hasTriangleTagValues
(読み取り専用)

Indicates whether the TIN dataset has triangle tag values

Boolean
isDelaunay
(読み取り専用)

Indicates whether the TIN dataset was constructed using Delaunay triangulation

Boolean
ZFactor
(読み取り専用)

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

Integer

コードのサンプル

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

  • ホーム
  • ドキュメント
  • サポート

ArcGIS プラットフォーム

  • ArcGIS Online
  • ArcGIS Desktop
  • ArcGIS Enterprise
  • ArcGIS for Developers
  • ArcGIS Solutions
  • ArcGIS Marketplace

Esri について

  • 会社概要
  • 採用情報
  • Esri ブログ
  • ユーザ カンファレンス
  • デベロッパ サミット
Esri
ご意見・ご感想をお寄せください。
Copyright © 2019 Esri. | プライバシー | リーガル