ラスタ カタログ プロパティ

サマリ

Describe 関数はラスタ カタログに対して次のプロパティを返します。フィーチャクラス プロパティジオデータベース フィーチャクラス プロパティテーブル プロパティジオデータベース テーブル プロパティ、およびデータセット プロパティもサポートされます。

ラスタ カタログが返す dataTypeRasterCatalog です。

プロパティ

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

The name of the raster column in the raster catalog

String

コードのサンプル

Raster Catalog properties example (stand-alone script)

The following stand-alone script displays the rasterFieldName property for a raster catalog.

import arcpy

# Create a Describe object from the raster catalog
#
desc = arcpy.Describe("C:/data/simon.gdb/idaho")

# Print the RasterFieldName property
#
print "Raster field name: " + desc.rasterFieldName


7/10/2012