In the third optional solution to the "Plot sea surface temperature" challange (Solution 3: (OPTIONAL) reprojecting and plotting with Cartopy) we jump into use of a regridder without much by way of explanation:
# Regrid
regridder = xe.Regridder(ds, target_grid, method="bilinear", periodic=True)
tos_regridded = regridder(ds)["tos_con"]
We may want to add some explanation...
In the third optional solution to the "Plot sea surface temperature" challange (Solution 3: (OPTIONAL) reprojecting and plotting with Cartopy) we jump into use of a regridder without much by way of explanation:
We may want to add some explanation...