Skip To Content

RasterToNumPyArray

Summary

Converts a raster to a NumPy array.

Discussion

A Python NumPy array is designed to deal with large arrays. There are many existing Python functions that have been created to process NumPy arrays, the most noted being contained in the SciPy scientific computing package for Python. You may want to convert an ArcGIS raster to a NumPy array to

  1. Implement one of the many existing Python functions that can be applied to a NumPy array (for example, run filters on the data, perform multidimensional analysis, or utilize optimization routines).
  2. Develop a custom function by accessing the individual cells within the NumPy array (for example, to implement neighborhood notation, change individual cell values, or run accumulative operators on an entire raster).

If the array definition (the lower left corner and the number of rows and columns) exceeds the extent of the in_raster, the array values will be assigned NoData.

If the lower_left_corner does not coincide with the corner of a cell, it will automatically be snapped to the lower left of the nearest cell corner applying the same rules as the Snap Raster environment setting. This snapping action within the RasterToNumPy function is not to be confused with the Snap Raster environment setting; the function only uses the same interaction. For more information, see the following:

RasterToNumPyArray supports the direct conversion of multiband rasters to an N-dimensional array (ndarray).

  1. If the input Raster instance is based on a multiband raster, it returns an ndarry, where the length of the first dimension represents the number of bands. The ndarray will have the dimensions (bands, rows, columns).
  2. If the input Raster instance is based on a single raster or a specific band from a multiband raster, it returns a two-dimensional array with the dimensions (rows, columns).

Syntax

RasterToNumPyArray (in_raster, {lower_left_corner}, {ncols}, {nrows}, {nodata_to_value})
ParameterExplanationData Type
in_raster

The input raster to convert to a NumPy array.

Raster
lower_left_corner

The lower left corner within the in_raster from which to extract the processing block to convert to an array. The x- and y-values are in map units. If no value is specified, the origin of the input raster will be used.

(The default value is None)

Point
ncols

The number of columns from the lower_left_corner in the in_raster to convert to the NumPy array.

If no value is specified, the number of columns of the input raster will be used.

(The default value is None)

Integer
nrows

The number of rows from the lower_left_corner in the in_raster to convert to the NumPy array.

If no value is specified, the number of rows of the input raster will used.

(The default value is None)

Integer
nodata_to_value

The value to assign the in_raster NoData values in the resulting NumPy array.

If no value is specified, the NoData value of in_raster will be used.

(The default value is None)

Variant
Return Value
Data TypeExplanation
NumPyArray

The output NumPy array.

Code sample

RasterToNumPyArray example 1

A raster is converted to a NumPy array to calculate the percentage of the cell value for each row of the raster. A new raster is then created.

Missing source code file
RasterToNumPyArray example 2

Block process an input multiband raster and calculate cell statistics across the bands. This script converts a multiband raster to a three-dimensional NumPy array and processes the array by dividing it into data blocks. It then calculates the mean of values across the rows of the block, converts the block numpy array to raster, and recombines the bands via mosaicking. A new multiband raster is created.

Missing source code file

Related topics