Raster Band properties
Resumen
The Describe function returns the following properties for raster bands. The Table and Dataset property groups are also supported.
For a raster band, the Describe dataType property returns a value of "RasterBand".
Propiedades
| Propiedad | Explicación | Tipo de datos |
|---|---|---|
|
height (Solo lectura) |
The number of rows. |
Integer |
|
isInteger (Solo lectura) |
Indicates whether the raster band has integer type. |
Boolean |
|
meanCellHeight (Solo lectura) |
The cell size in y direction. |
Double |
|
meanCellWidth (Solo lectura) |
The cell size in x direction. |
Double |
|
noDataValue (Solo lectura) |
The NoData value of the raster band. |
String |
|
pixelType (Solo lectura) |
The pixel type.
|
String |
|
primaryField (Solo lectura) |
The index of the field. |
Integer |
|
tableType (Solo lectura) |
The class names of the table.
|
String |
|
width (Solo lectura) |
The number of columns. |
Integer |
Muestra de código
Raster band properties example
The following stand-alone script displays some properties for a raster band:
import arcpy
# Create a Describe object from the raster band
desc = arcpy.Describe("C:/data/preston.img/Band_1")
# Print some raster band properties
print("Height: %d" % desc.height)
print("Width: %d" % desc.width)
print("Integer Raster: %s" % desc.isInteger)