polartoolkit.fetch.etopo

Contents

polartoolkit.fetch.etopo#

etopo(region=None, spacing=None, registration=None, hemisphere=None, epsg=None, **kwargs)[source]#

Loads a grid of Antarctic topography from ETOPO1 from ETOPO1 1 Arc-Minute Global Relief Model: Procedures, Data Sources and Analysis[1]. Originally at 10 arc-min resolution, reference to mean sea-level (geoid).

originally from https://www.ncei.noaa.gov/access/metadata/landing-page/bin/iso?id=gov.noaa.ngdc.mgg.dem:316 Accessed via the Fatiando data repository fatiando-data/earth-topography-10arcmin

Parameters:
  • region (tuple[float, float, float, float] | None) – region to clip the loaded grid to, in format [xmin, xmax, ymin, ymax], by default doesn’t clip

  • spacing (float | None) – grid spacing to resample the loaded grid to, by default 10e3

  • registration (str | None) – change registration with either β€˜p’ for pixel or β€˜g’ for gridline registration, by default is None.

  • hemisphere (str | None) – choose which hemisphere to retrieve data for, β€œnorth” or β€œsouth”, by default None

  • epsg (str | None) – choose which region to retrieve data for, either β€œ3031” or β€œ3413”, by default None

  • **kwargs (Any) – additional keyword arguments to pass to the resample_grid function

Returns:

Returns a loaded, and optional clip/resampled grid of topography.

Return type:

DataArray

References