cdo remap
Added by Florian Pappenberger over 11 years ago
Dear all,
I am trying to perform a remapping using already existing precomputed weights.
I have the following files:
remap_index.nc #contains cxx and cyy
target.nc
source.nc
what i need is a remapping which in code would look like this:
for i=1:cxx
for ii=1:cyy
target(i,ii)=source(cxx(i),cyy(ii))
end
end
I can't find any documentation on how the remap weigth nc are structured (e.g. using gennn) - any idea????