Reclassify raster by defined intervals

Set directory

Set parameters

Reclassify raster by defined intervals

Return the indices of the bins to which each value in input array belongs.

right order of bins returned index i satisfies
False increasing bins[i-1] <= x < bins[i]
True increasing bins[i-1] < x <= bins[i]
False decreasing bins[i-1] > x >= bins[i]
True decreasing bins[i-1] >= x > bins[i]

By default, right = False

If values in x are beyond the bounds of bins, 0 or len(bins) is returned as appropriate.

https://numpy.org/doc/stable/reference/generated/numpy.digitize.html

Example