polartoolkit.fetch.gravity#
- gravity(version, region=None, spacing=None, registration=None, hemisphere=None, epsg=None, **kwargs)[source]#
Loads gravity anomaly data for the Arctic and Antarctic.
version=âantggâ Antarctic-wide gravity data compilation of ground-based, airborne, and shipborne data, from Scheinert et al.[1]. Accessed from https://doi.pangaea.de/10.1594/PANGAEA.848168 Anomalies are at the ice surface, or bedrock surface in areas of no ice. These surfaces are defined by Bedmap2 and are relative to the ellipsoid.
version=âantgg-2021â Updates on 2016 AntGG compilation. Accessed from https://doi.pangaea.de/10.1594/PANGAEA.971238?format=html#download Anomalies are at the ice surface, or bedrock surface in areas of no ice. These surfaces are defined by Bedmap2 and are relative to the ellipsoid.
version=âeigenâ Earth gravity grid (eigen-6c4) at 10 arc-min resolution at 10km geometric (ellipsoidal) height from Förste et al.[2]. originally from https://dataservices.gfz-potsdam.de/icgem/showshort.php?id=escidoc:1119897 Accessed via the Fatiando data repository fatiando-data/earth-gravity-10arcmin
- Parameters:
version (str) â choose which version of gravity data to fetch.
region (tuple[float, float, float, float], optional) â region to clip the loaded grid to, in format [xmin, xmax, ymin, ymax], by default doesnât clip
spacing (str or int, optional) â grid spacing to resample the loaded grid to, by default 10e3
registration (str, optional) â change registration with either âpâ for pixel or âgâ for gridline registration, by default is None.
hemisphere (str, optional) â 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 kwargs to pass to resample_grid and set the anomaly_type.
- Keyword Arguments:
anomaly_type (str) â either âFAâ or âBAâ, for free-air and bouguer anomalies, respectively. For antgg-update can also be âDGâ for gravity disturbance, or âErrâ for error estimates.
- Returns:
Returns a loaded, and optional clip/resampled grid of either observed, free-air or Bouguer gravity anomalies.
- Return type:
References