Deepbedmap Bed Topography#
Description: A grid of bed topography from a deep neural network.
Dataset:
Leong, Wei Ji, and Huw Joseph Horgan. “DeepBedMap: A Super-Resolution Neural Network Created Bed Topography of Antarctica.” Zenodo, November 6, 2020. https://doi.org/10.5281/zenodo.4054246.
Associated paper:
Leong, Wei Ji, and Huw Joseph Horgan. “DeepBedMap: A Deep Neural Network for Resolving the Bed Topography of Antarctica.” The Cryosphere 14, no. 11 (November 5, 2020): 3687–3705. https://doi.org/10.5194/tc-14-3687-2020.
[1]:
%%capture
%load_ext autoreload
%autoreload 2
from polartoolkit import fetch, maps, regions, utils
[2]:
data = fetch.deepbedmap(
# available options
region=regions.minna_bluff,
# registration ("g" for gridline or "p" for pixel),
)
data
[2]:
<xarray.DataArray 'z' (y: 760, x: 720)> Size: 2MB
array([[-889., -889., -889., ..., 90., 104., -59.],
[-891., -890., -890., ..., -100., 13., 194.],
[-892., -892., -891., ..., 187., 201., 122.],
...,
[-810., -810., -810., ..., -948., -927., -980.],
[-809., -809., -809., ..., -945., -928., -931.],
[-807., -807., -807., ..., -847., -860., -865.]], dtype=float32)
Coordinates:
* x (x) float64 6kB 2.101e+05 2.104e+05 ... 3.896e+05 3.899e+05
* y (y) float64 6kB -1.31e+06 -1.31e+06 ... -1.12e+06 -1.12e+06
Attributes:
long_name: z
actual_range: [-1678. 2949.][3]:
_ = utils.get_grid_info(data, print_info=True)
grid spacing: 250.0 m
grid region: (210000.0, 390000.0, -1310000.0, -1120000.0)
grid zmin: -1678.0
grid zmax: 2949.0
grid registration: p
[4]:
fig = maps.plot_grd(
data,
title="DeepBedMap Bed Topography",
coast=True,
cbar_label="meters",
hist=True,
robust=True,
cmap="rain",
reverse_cpt=True,
hemisphere="south",
)
fig.show(dpi=200)
[ ]: