Search results
to convert my file NetCDF to GRIB resulted as follows: The generic grid type variables Means That Have Either the information grid or not the grid information is not supported in CDO. In Both cases it is not possible to store the data in GRIB format. And use the following: cdo setgrid (Warning): No grid with 8192 points found!
4 maj 2024 · I have tried the commands cdo -r settaxis,2005-01-01,00:00:00,1month LST_daily_degC_lat-lon_2005-2020_2.nc LST_daily_degC_lat-lon_2005-2020_3.nc and then I tried to use the invertlat command but nothing really happened.
15 cze 2021 · You can solve this using the setgrid operator. First create a grid file. This is the same as the one you give, but with "generic" replaced by "lonlat": Then use CDO to set the grid: You should then be able to regrid the file. Hello, apologies I have one more question.
There are many different possibilities to specify the target grid for the remapping with CDO. Here is one example for a simple global regular 1 degree lonlat grid with an ASCII description file: cat > mygrid << EOF gridtype = lonlat xsize = 360 ysize = 180 xfirst = −179.5 xinc = 1 yfirst = -89.5 yinc = 1 EOF cdo remapbil,mygrid ifile ofile
Here we just give a few examples for the use with CM SAF data: The pure conversion of a CM SAF HDF5 file to netCDF can be done with the “import_cmsaf” operator. The output format is specified with the parameter “-f”: cdo -f nc import_cmsaf ifile.h5 ofile.nc. Operators can be combined to a command sequence.
PINGO is using a very simple grid description in ASCII format. You can use it to describe regular longitude/latitude or global gaussian grids. All PINGO grid description files are supported. For more information about this format see [PINGO].
Can use command line and CDO to aggregate or resample entire NC files. CDO homepage: https://code.mpimet.mpg.de/projects/cdo. This page is helpful for describing regridding: https://code.mpimet.mpg.de/projects/cdo/wiki/Tutorial#Interpolation.