IBCSO v2 surface and bed elevation

IBCSO v2 surface and bed elevation#

Description: International Bathymetric Chart of the Southern Ocean Version 2 gridded data.

Dataset:

Dorschel, Boris, Laura Hehemann, Sacha Viquerat, Fynn Warnke, Simon Dreutter, Yvonne Schulze Tenberge, Daniela Accettella, et al. β€œThe International Bathymetric Chart of the Southern Ocean Version 2 (IBCSO V2).” PANGAEA, 2022. https://doi.org/10.1594/PANGAEA.937574.

Associated paper:

Dorschel, Boris, Laura Hehemann, Sacha Viquerat, Fynn Warnke, Simon Dreutter, Yvonne Schulze Tenberge, Daniela Accettella, et al. β€œThe International Bathymetric Chart of the Southern Ocean Version 2.” Scientific Data 9, no. 1 (December 2022): 275. https://doi.org/10.1038/s41597-022-01366-7.

[1]:
%%capture
%load_ext autoreload
%autoreload 2

from polartoolkit import fetch, maps, utils
[2]:
layer_names = ["surface", "bed"]

grids = []
for name in layer_names:
    data = fetch.ibcso(
        layer=name,
        spacing=5e3,
        # available options
        # region,
        # registration ("g" for gridline or "p" for pixel),
    )
    grids.append(data)
[3]:
_ = utils.get_grid_info(data, print_info=True)
grid spacing: 5000.0 m
grid region: (-2800000.0, 2800000.0, -2800000.0, 2800000.0)
grid zmin: -6302.79589844
grid zmax: 4568.85058594
grid registration: g
[4]:
fig = maps.plot_grd(
    grids[0],
    title="IBCSO v2 Surface Elevation",
    coast=True,
    cbar_label="meters",
    hist=True,
    robust=True,
    cmap="rain",
    reverse_cpt=True,
    hemisphere="south",
)
fig = maps.plot_grd(
    grids[1],
    fig=fig,
    origin_shift="x",
    title="IBCSO v2 Bed Elevation",
    coast=True,
    cbar_label="meters",
    hist=True,
    robust=True,
    cmap="rain",
    reverse_cpt=True,
    hemisphere="south",
)
fig.show(dpi=200)
../../_images/datasets_antarctica_ibcso_4_0.png
[ ]: