[1]:
import earthkit.data
import earthkit.plots
import numpy as np

data = earthkit.data.from_source("sample", "healpix-h128-nested-2t.grib")

chart = earthkit.plots.Map(domain=["France", "Spain"])

chart.contourf(data, levels=np.arange(0, 20, 0.5), colors="Spectral_r", units="celsius")

chart.title()
chart.legend()

chart.coastlines()

chart.show()
../../../_images/examples_gallery_grid-types_healpix-interpolated_0_2.png