Remap without interpolation
Added by Yousef Albuhaisi over 4 years ago
Hi,
I have a map of 0.001deg resolution, and I want to remap it to 0.01 and 0.1 and 1deg. What is the suitable command operation that can do this.
Looking Forward.
Yousef.
Replies (2)
RE: Remap without interpolation - Added by Ralf Mueller over 4 years ago
hi Yusef!
if the grids are regular, you can use the internal shortcuts for this: global_0.01
, global_0.1
and global_1
like this
cdo -remapbil,global_0.1 <input-file> <output-file>
remapbil
does bilinear interpolation, please use the interpolation you need from the list of operators found here: https://code.mpimet.mpg.de/projects/cdo/embedded/index.html#x1-6020002.12
hth
ralf
RE: Remap without interpolation - Added by Yousef Albuhaisi over 4 years ago
Hi Ralf,
Thank you.
I wanted to rebin the data so no interpolation will take place, is that possible to do?