I need to get the principal coefficients (daily) of the first EOF of the daily geopotential height field (data = geopot.nc). I use only the cold season (N,D,J,F,M,A). My code is as follows:
cdo selmon,11,12,1,2,3,4 geopot.nc geopotw.nc
cdo --reduce_dim - copy geopotw.nc geopotw3.nc #delete 1 dimension of level=1)
cdo sub geopotw3.nc -ydaymean geopotw3.nc deseason.nc
cdo mulcoslat deseason.nc deseasoncos.nc
cdo eof,3 deseasoncos.nc eval.nc eof.nc
I got a warning message: statistics-module (Warning): Eigenvalue computation with one-sided jacobi scheme did not converge properly. 7017371 of 7244721 pairs of columns did not achieve requested orthogonality of 1e-12.
What I am doing wrong? Maybe I am missing something? Or maybe there are other better ways to achieve the result I am looking for? For example in R. Thank you for the help!