Raster Band properties

Diese ArcGIS 3.0-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 bands. The Table and Dataset property groups are also supported.

For a raster band, the Describe dataType property returns a value of "RasterBand".

Eigenschaften

EigenschaftErläuterungDatentyp
height
(Schreibgeschützt)

The number of rows.

Integer
isInteger
(Schreibgeschützt)

Indicates whether the raster band has integer type.

Boolean
meanCellHeight
(Schreibgeschützt)

The cell size in y direction.

Double
meanCellWidth
(Schreibgeschützt)

The cell size in x direction.

Double
noDataValue
(Schreibgeschützt)

The NoData value of the raster band.

String
pixelType
(Schreibgeschützt)

The pixel type.

  • U11 bit
  • U22 bits
  • U44 bits
  • U8Unsigned 8-bit integers
  • S88-bit integers
  • U16Unsigned 16-bit integers
  • S1616-bit integers
  • U32Unsigned 32-bit integers
  • S3232-bit integers
  • F32Single-precision floating point
  • F64Double-precision floating point
String
primaryField
(Schreibgeschützt)

The index of the field.

Integer
tableType
(Schreibgeschützt)

The class names of the table.

  • ValueValues in the table are used for values only, not for indexing.
  • IndexValues in the table are used as indexes in the raster table.
  • InvalidValues are invalid.
String
width
(Schreibgeschützt)

The number of columns.

Integer

Codebeispiel

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)