Description: The product “internal ice-sheet temperature” is composed by maps of internal temperature for the regions in which the Robin model is valid D5-2 [RD.9] along with the relative uncertainty estimation and a map of the quality of the estimation.
Original Data Source: https://
zenodo .org /records /8052519 Reference: Davison et al. (2023)
OSC entry: https://
opensciencedata .esa .int /products /ice -temperature -profiles -antarctica /collection License: CC-BY-4.0
Repo Folder: ./datasets/ice_temp
import xarray as xr
import cartopy.crs as ccrs
import hvplot.xarray
url = 'https://s3.waw4-1.cloudferro.com/EarthCODE/OSCAssets/polar_cube_datasets/ice_sheet_temperature/SM_TEST_MIR_ITUDP4_20130101T000000_20141231T000000_200_001_0.zarr/'
ds = xr.open_zarr(url)
dsLoading...
Loading...
Loading...
Loading...
Loading...
lon = ((ds["longitude"] + 180) % 360) - 180
tice = ds["Tice"].assign_coords(longitude=lon, latitude=ds["latitude"])
tice = tice.rename("Tice (Kelvin)")
tice.hvplot.quadmesh(
x="longitude",
y="latitude",
groupby="depth",
geo=True,
crs=ccrs.PlateCarree(),
projection=ccrs.SouthPolarStereo(central_longitude=0, true_scale_latitude=-71),
coastline=True,
cmap="coolwarm",
colorbar=True,
clabel=tice.name,
width=850,
height=700,
title="Ice temperature by depth",
)Loading...
- Davison, B. J., Hogg, A. E., Gourmelen, N., Jakob, L., Wuite, J., Nagler, T., Greene, C. A., Andreasen, J., & Engdahl, M. E. (2023). Annual mass budget of Antarctic ice shelves from 1997 to 2021. Science Advances, 9(41). 10.1126/sciadv.adi0186