REMA surface elevations

REMA surface elevations#

Description: Reference Elevation Model of Antarctica, referenced to the WGS84 ellipsoid.

Dataset:

N.A.

Associated paper:

Howat, Ian M., Claire Porter, Benjamin E. Smith, Myoung-Jong Noh, and Paul Morin. β€œThe Reference Elevation Model of Antarctica.” The Cryosphere 13, no. 2 (February 26, 2019): 665–74. https://doi.org/10.5194/tc-13-665-2019.

[1]:
import polartoolkit as ptk
[2]:
version_names = [
    "500m",
    "1km",
]

grids = []
for name in version_names:
    data = ptk.fetch.rema(
        version=name,
        # available options
        # region,
        # spacing,
        # registration ("g" for gridline or "p" for pixel),
    )
    grids.append(data)
    print(f"Info for {name}")
    _ = ptk.get_grid_info(data, print_info=True)
    print("##########")
Info for 500m
grid spacing: 500.0 m
grid region: (-2700250.0, 2750250.0, -2500250.0, 3342250.0)
grid zmin: -66.4453125
grid zmax: 4702.28125
grid registration: g
##########
Info for 1km
grid spacing: 1000.0 m
grid region: (-2700500.0, 2750500.0, -2500500.0, 3342500.0)
grid zmin: -66.4453125
grid zmax: 4639.3125
grid registration: g
##########
[3]:
fig = ptk.plot_grid(
    grids[0],
    title="REMA (500m resolution)",
    coast=True,
    cbar_label="Surface elevation (meters)",
    hist=True,
    robust=True,
    cmap="rain",
    reverse_cpt=True,
    hemisphere="south",
)
fig = ptk.plot_grid(
    grids[1],
    fig=fig,
    origin_shift="x",
    title="REMA (1km resolution)",
    coast=True,
    cbar_label="Surface elevation (meters)",
    hist=True,
    robust=True,
    cmap="rain",
    reverse_cpt=True,
    hemisphere="south",
)
fig.show(dpi=200)
../../_images/datasets_antarctica_rema_3_0.png
[ ]: