We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Greetings,
I found a very useful reference this website to use xesmf to regrid data to another resolution:
https://climate-cms.org/posts/2021-04-09-xesmf-regrid.html
Nevertheless, here it is also detailed to do it for horizontal coordinates (lat, lon).
ds_out = xe.util.grid_2d(-180.0, 180.0, 2.5, -90.0, 90.0, 2.5) regridder = xe.Regridder(ds, ds_out, 'bilinear', periodic=True)
I was wondering if is possible do it for vertical coordinates (vertical levels) by specifying by an array the number and intervals?.
Thanks in advance
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Greetings,
I found a very useful reference this website to use xesmf to regrid data to another resolution:
https://climate-cms.org/posts/2021-04-09-xesmf-regrid.html
Nevertheless, here it is also detailed to do it for horizontal coordinates (lat, lon).
ds_out = xe.util.grid_2d(-180.0, 180.0, 2.5, -90.0, 90.0, 2.5)
regridder = xe.Regridder(ds, ds_out, 'bilinear', periodic=True)
I was wondering if is possible do it for vertical coordinates (vertical levels) by specifying by an array the number and intervals?.
Thanks in advance
The text was updated successfully, but these errors were encountered: