Problem with remapbil oerator
Added by Tanmoyee Bhattacharya about 7 years ago
I have a nc file of CMIP5. I have attached it.This file of 0.5 degree grid and I want to convert it into 0.05 degree grid and it is 4 dimension file
lon,lat,pressure and time.I do remapbil function.
gridtype = lonlat
xsize = 21
ysize = 31
xfirst = 31.500
xinc = 0.05
yfirst = 76.500
yinc = 0.05
It is my myGridDef
I do cdo remapbil,myGridDef input.nc output.nc
The lat lon is in output file is fine but four dimension temperature which is from 1979 to 2005 is coming as NAN.
Can anyone help me to solve this problem
Replies (2)
RE: Problem with remapbil oerator - Added by Karin Meier-Fleischer about 7 years ago
Hi Tanmoyee,
the gridfile is not correct. It has to be the following one if you want to use the xinc and yinc parameter equal 0.05.
gridtype = lonlat gridsize = 1271 xsize = 41 ysize = 31 xfirst = 31.5 xinc = 0.05 yfirst = 76.5 yinc = 0.05
-Karin
RE: Problem with remapbil oerator - Added by Tanmoyee Bhattacharya about 7 years ago
Thank you sir.I have solved it.