Resumen
La función Describir devuelve las siguientes propiedades para las Bandas de ráster Las Propiedades de la tabla y las Propiedades del dataset también son compatibles.
Una banda de ráster devuelve un tipo de datos de "RasterBand".
Propiedades
Propiedad | Explicación | Tipo de datos |
height (Sólo lectura) | The number of rows | Integer |
isInteger (Sólo lectura) | Indicates whether the raster band has integer type | Boolean |
meanCellHeight (Sólo lectura) | The cell size in y direction | Double |
meanCellWidth (Sólo lectura) | The cell size in x direction | Double |
noDataValue (Sólo lectura) | The NoData value of the raster band | String |
pixelType (Sólo lectura) | The pixel type
| String |
primaryField (Sólo lectura) | The index of the field | Integer |
tableType (Sólo lectura) | The class names of the table
| String |
width (Sólo lectura) | The number of columns | Integer |
Muestra de código
Raster Band properties example (stand-alone script)
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