Added by Natalia L over 5 years ago
Hello,
I have a gridded netcdf file (see attached) with 7 bands and I want to create 2D plots with each one of the bands. The gridded file is on Lambert Conformal Conic Projection with spherical datum. Can I plot the file with CDO using Magics?
Thank you
Natalia
gridded_example.nc (3.13 MB) gridded_example.nc |
Hi Natalia,
you have to remap the data to a latlon grid, first.
cdo remapbil,r360x180 gridded_example.nc gridded_example_r360x180.nc
Then you can create the plots, e.g. as PNG files.
cdo grfill,device="png" gridded_example_r360x180.nc plot
-Karin