サマリー
Describe 関数はカバレッジ フィーチャクラスに対して次のプロパティを返します。フィーチャクラス プロパティ、テーブル プロパティ、およびデータセット プロパティもサポートされます。
カバレッジ フィーチャクラスが返す dataType は CoverageFeatureClass です。
プロパティ
プロパティ | 説明 | データ タイプ |
featureClassType (読み取り専用) | The feature class types.
| String |
hasFAT (読み取り専用) | True if the coverage feature class has a Feature Attribute Table (FAT) and False if it does not. | Boolean |
topology (読み取り専用) | Indicates the state of the coverage feature class topology.
| String |
コードのサンプル
The following stand-alone script displays properties for a Coverage FeatureClass.
import arcpy
# Create describe object from a coverage feature class
#
desc = arcpy.Describe("C:/data/tongass1/polygon")
# Print coverage feature class properties
#
print("%-17s %s" % ("featureClassType:", desc.featureClassType))
print("%-17s %s" % ("hasFAT:", desc.hasFAT))
print("%-17s %s" % ("topology:", desc.topology))