NetCDF: Variable not found / Unsupported grid type
Added by Jan Feldhoff over 12 years ago
Hi!
I have a quite large NetCDF3 file containing global gridded data. I want to crop it down to a certain region (South America). So I do:
cdo sellonlatbox,-83,-25.5,-50.5,12.5 Wind_WFD_197001.nc Wind_WFD_197001_new.nc
but what I get is:
Warning (cdfScanVarAttributes) : Unexpected axis attribute length for Wind, ignored!
Warning (cdfScanVarAttributes) : NetCDF: Variable not found - (nav_lat
Warning (cdfScanVarAttributes) : NetCDF: Variable not found - nav_lon)
cdo sellonlatbox: Unsupported grid type: generic
cdo sellonlatbox (Abort): Unsupported grid type!
I attach the header info. Can anyone please help?
Thanks a lot!
Jan
ncdump.txt (1.74 KB) ncdump.txt |
Replies (2)
RE: NetCDF: Variable not found / Unsupported grid type - Added by Jaison-Thomas Ambadan over 12 years ago
Hi,
From CDO docs: "NetCDF datasets are only supported for the classic data model and arrays up to 4 dimensions." Your input NetCDF file has a non-standard (other than lat/lon/lev/time) co-ordinate variable named "land" which CDO doesn't support at the moment.
Cheers,
J.
RE: NetCDF: Variable not found / Unsupported grid type - Added by Jan Feldhoff over 12 years ago
Thank you for the quick reply, I will see what I can do about that!
Jan