Ice Velocity#
Description: Gridded estimates of ice velocity from the MEaSUREs Phase-Based Greenland Ice Velocity Map.
Requires an EarthData login, see link for how to configure this.
Dataset:
National Snow and Ice Data Center. “MEaSUREs Multi-Year Greenland Ice Sheet Velocity Mosaic, Version 1,” October 21, 2020. https://nsidc.org/data/nsidc-0670/versions/1.
Associated paper:
N.A.
[1]:
import polartoolkit as ptk
[2]:
data = ptk.fetch.ice_vel(
hemisphere="north",
# available options
# region,
# spacing,
# registration ("g" for gridline or "p" for pixel),
)
data
[2]:
<xarray.DataArray (y: 10920, x: 6020)> Size: 263MB
array([[nan, nan, nan, ..., nan, nan, nan],
[nan, nan, nan, ..., nan, nan, nan],
[nan, nan, nan, ..., nan, nan, nan],
...,
[nan, nan, nan, ..., nan, nan, nan],
[nan, nan, nan, ..., nan, nan, nan],
[nan, nan, nan, ..., nan, nan, nan]],
shape=(10920, 6020), dtype=float32)
Coordinates:
* x (x) float64 48kB -6.45e+05 -6.448e+05 ... 8.595e+05 8.598e+05
* y (y) float64 87kB -6.402e+05 -6.405e+05 ... -3.37e+06 -3.37e+06[3]:
_ = ptk.get_grid_info(data, print_info=True)
grid spacing: 250.0 m
grid region: (-645125.0, 859875.0, -3369875.0, -640375.0)
grid zmin: 0.00136277475394
grid zmax: 12906.4941406
grid registration: p
[4]:
fig = ptk.plot_grid(
data,
title="Ice Velocity",
cmap="magma",
cpt_lims=(0.001, 3),
cpt_log=True,
cbar_log=True,
coast=True,
cbar_label="meters/year",
hemisphere="north",
)
fig.show(dpi=200)