raster: The raster to be normalized.minLimandmaxLim(Optional): The lower and upper limits of the normalization range. By default, normalization range is set to [0, 255].normalizeAcrossBands(Optional): A boolean flag to determine the normalization method. If set to true (default), normalization is performed across all bands based on global min and max values. If false, each band is normalized individually based on its own min and max values.noDataValue(Optional): Defines the value to be used for missing or invalid data in raster bands. By default, noDataValue is set tomaxLimand Safety mode is triggered.minValueandmaxValue(Optional): Optionally, specific minimum and maximum values of the input raster can be provided. If not provided, these values are computed from the raster data.
noDataValue is not given. This sets noDataValue to maxLim and normalizes valid data values to the range [minLim, maxLim-1]. This is to avoid replacing valid data that might coincide with the new noDataValue.
Signatures
Parameters
The input raster.
The min lim value.
The max lim value.
The normalize across bands value.
The NoData value to use for pixels outside the raster extent.
The minimum value for normalization.
The maximum value for normalization.
Return type
The resulting raster.

