pygmt.grdhisteq.equalize_grid

static grdhisteq.equalize_grid(grid, outgrid=None, **kwargs)[source]

Perform histogram equalization for a grid.

pygmt.grdhisteq.equalize_grid provides a way to write a grid with statistics based on a cumulative distribution function. The outgrid has relative highs and lows in the same (x,y) locations as the grid, but the values are changed to reflect their place in the cumulative distribution.

Full option list at https://docs.generic-mapping-tools.org/6.5/grdhisteq.html

Aliases:

  • C = divisions

  • N = gaussian

  • Q = quadratic

  • R = region

  • V = verbose

  • h = header

Parameters:
Return type:

DataArray | None

Returns:

ret – Return type depends on the outgrid parameter:

  • xarray.DataArray if outgrid is None

  • None if outgrid is a str (grid output is stored in outgrid)

Example

>>> import pygmt
>>> # Load a grid of @earth_relief_30m data, with a longitude range
>>> # of 10°E to 30°E, and a latitude range of 15°N to 25°N
>>> grid = pygmt.datasets.load_earth_relief(
...     resolution="30m", region=[10, 30, 15, 25]
... )
>>> # Create a new grid with a Gaussian data distribution
>>> grid = pygmt.grdhisteq.equalize_grid(grid=grid, gaussian=True)

See also

pygmt.grd2cpt

Note

This method does a weighted histogram equalization for geographic grids to account for node area varying with latitude.

Examples using pygmt.grdhisteq.equalize_grid

Performing grid histogram equalization

Performing grid histogram equalization