ESMPy for re-gridding?
Closed this issue · 3 comments
DamienIrving commented
DamienIrving commented
DamienIrving commented
Another option would be to take the code for cssgrid from here at the uvcdat repo and use it to write my own Python package.
DamienIrving commented
It turns out that because I'm only using the values near the equator (i.e. where a degree of latitude and longitude is the same distance), I don't need to perform the regridding on a sphere. Instead, I can just use scipy.interpolate.griddata
.
For future reference, pyresample might also be an option for this type of regridding.