polartoolkit.fetch.ghf

Contents

polartoolkit.fetch.ghf#

ghf(version, region=None, spacing=None, registration=None, **kwargs)[source]#

Load 1 of 8 ‘versions’ of Antarctic geothermal heat flux data.

version=’an-2015’ From An et al.[1]. Accessed from http://www.seismolab.org/model/antarctica/lithosphere/index.html

version=’martos-2017’ From Martos et al.[2] and Martos[3]. Accessed from https://doi.pangaea.de/10.1594/PANGAEA.882503

version=’shen-2020’: From Shen et al.[4]. Accessed from https://sites.google.com/view/weisen/research-products?authuser=0 Used https://paperform.co/templates/apps/direct-download-link-google-drive/ to generate a direct download link from google drive page. https://drive.google.com/uc?export=download&id=1Fz7dAHTzPnlytuyRNctk6tAugCAjiqzR

version=’burton-johnson-2020’ From Burton-Johnson et al.[5]. Accessed from supplementary material Choose for either of grid, or the point measurements

version=’losing-ebbing-2021’ From Lösing and Ebbing[6] and Lösing and Ebbing[7]. Accessed from https://doi.pangaea.de/10.1594/PANGAEA.930237

version=’aq1’ From StĂ„l et al.[8] and StĂ„l et al.[9]. Accessed from https://doi.pangaea.de/10.1594/PANGAEA.924857

version=’hazzard-richards-2024’ From Hazzard and Richards[10]. Accessed from https://osf.io/54zam/overview

version=’haeger-2024’ From Haeger et al.[11] and Haeger et al.[12]. Accessed from https://doi.org/10.5880/GFZ.1.3.2022.002

Parameters:
  • version (str) – Either ‘an-2015’, ‘martos-2017’, ‘shen-2020’, ‘burton-johnson-2020’, ‘losing-ebbing-2021’, ‘aq1’, ‘hazzard-richards-2024’, or ‘haeger-2024’

  • 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 spacing is read from downloaded files

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

  • kwargs (Any) – if version=’burton-johnson-2020’, then kwargs are passed to return point measurements instead of the grid.

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

Returns:

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

Return type:

DataArray

References