Synthèse
The Describe function returns the following properties for raster datasets. The Dataset property group is also supported. Single-band raster datasets also support the Raster Band property group.
For a raster dataset, the Describe dataType property returns a value of "RasterDataset".
Propriétés
Propriété | Explication | Type de données |
bandCount (Lecture seule) | The number of bands in the raster dataset. | Integer |
compressionType (Lecture seule) | The compression type.
| String |
format (Lecture seule) | The raster format.
| String |
permanent (Lecture seule) | Indicates the permanent state of the raster: False if the raster is temporary and True if the raster is permanent. | Boolean |
sensorType (Lecture seule) | The sensor type used to capture the image. | String |
Exemple de code
The following stand-alone script displays some properties for a raster dataset:
import arcpy
# Create a Describe object from the raster dataset
#
desc = arcpy.Describe(r"C:\temp\FGDB.gdb\RD")
# Print some raster dataset properties
#
print("Band Count: %d" % desc.bandCount)
print("Compression Type: %s" % desc.compressionType)
print("Raster Format: %s" % desc.format)
print("Permanent: %s" % desc.permanent)
print("Sensor Type: %s" % desc.sensorType)
Vous avez un commentaire à formuler concernant cette rubrique ?