Convert latlon to gaussian grid
Added by Oliver Angelil over 7 years ago
File is attached.
How can I convert the attached latlon grid to a gaussian grid (and keep the 46 x 59 dimension), so that I can apply the "uv2dv" operator to it.
Thanks,
Oliver
latlon_grid.nc (815 KB) latlon_grid.nc |
Replies (5)
RE: Convert latlon to gaussian grid - Added by Oliver Angelil over 7 years ago
This seems to work:
cdo intgridbil,r59x46 latlon_grid.nc latlon_grid2.nc
Oliver
RE: Convert latlon to gaussian grid - Added by Oliver Angelil over 7 years ago
Actually the above was incorrect. Still looking for help.
RE: Convert latlon to gaussian grid - Added by Oliver Angelil over 7 years ago
Also, what is the difference between:
cdo intgridbil,t159grid ifile.nc ofile.nc
and, for example...
cdo remapbil,t159grid ifile.nc ofile.nc
(assume I have a file with data over the whole world, not just Australia like I attached earlier).
RE: Convert latlon to gaussian grid - Added by Karin Meier-Fleischer over 7 years ago
Hi Oliver,
I would expect that intgridbil is doing the same as remapbil. It is not documented anymore and seems to be really old. I would recommend to use the remapbil operator.
-Karin
RE: Convert latlon to gaussian grid - Added by Oliver Angelil over 7 years ago
Thanks.
I'll go with remapbil,t159grid
Oliver