Raster Catalog properties

Diese ArcGIS 2.8-Dokumentation wurde archiviert und wird nicht mehr aktualisiert. Inhalt und Links sind möglicherweise veraltet. Verwenden Sie die aktuelle Dokumentation.

Zusammenfassung

The Describe function returns the following properties for Raster Catalogs: GDB FeatureClass Properties, FeatureClass Properties, GDB Table Properties, Table Properties, and Dataset Properties are also supported. Editor Tracking Properties are supported if editor tracking has been enabled for this raster catalog.

A Raster Catalog returns a dataType of "RasterCatalog".

Eigenschaften

EigenschaftErläuterungDatentyp
rasterFieldName
(Schreibgeschützt)

The name of the raster column in the raster catalog.

String

Codebeispiel

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)