Raster Catalog properties (arcpy)
サマリ
The Describe function returns the following properties for Raster Catalogs. FeatureClass Properties, GDB FeatureClass Properties, Table Properties, GDB Table Properties, Editor Tracking Dataset Properties, and Dataset Properties are also supported.
A Raster Catalog returns a dataType of "RasterCatalog".
特性
プロパティ | 説明 | データ タイプ |
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
9/14/2013