Unsupported array structure, skipped variable YY! (cdo 1.7.1)
Added by Lyndon Mark Olaguera almost 8 years ago
Hi All,
I have a netcdf file attached in this message.
I am using cdo v 1.7.1.
I encountered the following errors:
Warning (cdfScanVarAttributes) : Time must be the first dimension! Unsupported array structure, skipped variable YY!
cdo sinfo: Open failed on >fft_pentad_1961.nc<_
Has anyone experienced this kind of problem? Any cdo command does not work.
I also attached the output of ncdump -h here.
Any suggestions on how can I open this file in cdo?
I'll appreciate any help.
fft_1961.txt (1.1 KB) fft_1961.txt | |||
fft_pentad_1961.nc (28.1 MB) fft_pentad_1961.nc |
Replies (2)
RE: Unsupported array structure, skipped variable YY! (cdo 1.7.1) - Added by Ralf Mueller almost 8 years ago
you can reorder the dimensions with ncpdq which is part of the NCO package
ncpdq -a time,lev,lat,lon fft_pentad_1961.nc fft_reAranged.ncThen cdo can handle it
cdo infov ftt_reAranged.nc -1 : Date Time Level Gridsize Miss : Minimum Mean Maximum : Parameter name 1 : 1961-01-03 00:00:00 1 100800 53927 : -11.016 0.28042 17.691 : YY 2 : 1961-01-08 00:00:00 1 100800 53927 : -7.6324 0.097772 13.979 : YY 3 : 1961-01-13 00:00:00 1 100800 53927 : -11.765 -0.15916 20.216 : YY 4 : 1961-01-18 00:00:00 1 100800 53927 : -15.454 -0.28019 16.247 : YY 5 : 1961-01-23 00:00:00 1 100800 53927 : -19.334 -0.19987 13.565 : YY .....
RE: Unsupported array structure, skipped variable YY! (cdo 1.7.1) - Added by Lyndon Mark Olaguera almost 8 years ago
Hi Ralf,
Many many thanks for the help.