using Revise
using DGGS
using Test
using GLMakie
function plot_cube(cube)
c = cube[Variable="air_temperature_2m", time=DateTime("2020-01-01T01:00:00")]
m = Matrix(c.data.data)
heatmap(m)
end
using EarthDataLab
esdc_cube = esdc(res="low")
subset_cube = esdc_cube[region="Europe", time=2020:2021, Variable=["ndvi", "air_temperature_2m"]]
geo_cube = GeoCube(subset_cube)
plot_cube(geo_cube)
Furthermore, GeoCube -> CellCube -> GeoCube conversion fails if the cube has no additional dimensions: