Error converting "cdo remapbil (Abort): Unsupported grid type: generic"
Added by hyunggyu lim about 10 years ago
Hello.
I wonder why cdo remapbil,r360x180 -selname,DEPTH_MIXED_LAYER imsi01.nc result_mld01.nc
CDO gives some lines as below.
cdo remapbil: Started child process "selname,DEPTH_MIXED_LAYER imsi01.nc (pipe1.1)".
cdo remapbil (Abort): Unsupported grid type: generic
what is the generic grid?
I tried to add "ncatted -a coordinates,DEPTH_MIXED_LAYER,c,c,"LATITUDE LONGITUDE" imsi01.nc" like this as followed https://code.zmaw.de/boards/1/topics/55
But, it didn't work.
Can anybody help me?
Hyung-Gyu Lim
Replies (1)
RE: Error converting "cdo remapbil (Abort): Unsupported grid type: generic" - Added by Jonghun Jin about 10 years ago
Hi,
Is type of original grid "lonlat"?
Dose it have correct values of coordinate ("LATITUDE" and "LONGITUDE")?
If so, please try to do like this before remap.
ncrename -O -d LONG,LONGITUDE -d LAT,LATITUDE imsi01.nc
ncatted -O -a units,LONGITUDE,c,c,degrees_east -a units,LATITUDE,c,c,degrees_north imsi01.nc
Jonghun