airbornegeo.get_min_max#
- get_min_max(values, robust=False, absolute=False, robust_percentiles=(0.02, 0.98))[source]#
Get a grids max and min values.
- Parameters:
values (
Series|ndarray[tuple[Any,...],dtype[TypeVar(_ScalarT, bound=generic)]]) â values to find min or max forrobust (
bool) â choose whether to return the 2nd and 98th percentile values, instead of the min/maxabsolute (
bool) â return the absolute min and max values, by default Falserobust_percentiles (
tuple[float,float]) â decimal percentiles to use for robust min and max, by default (0.02, 0.98)
- Returns:
returns the min and max values.
- Return type: