I have netCDF files downloaded from here. They are at 0.5*0.5 resolution. I want to re-grid these files at a coarser resolution of 1*1. I found some links. First link talks about re-grid in R, but without using bi-linear interpolation. The second link deals with bi-linear interpolation, but using climate data operator (to which I am not very much familiar). Then I came across an R package HiClimR. In this package, a command coarseR
reduces the resolution of data. I converted netCDF file into an excel file and used coarseR
. But after getting results I found that this command actually skipped longitude latitude in some way and reduced the resolution to 1*1. In nut shell, my problems are
(1) Is it right to use coarseR
for reducing resolution?
(2) How can bi-linear transformation be used for my specific problem in R?
Many thanks in advance.