GET_CYCLE - unable to get value for attribute: cycle_length
in variable: wind_time
This attribute value is expected to be of
the same external type as the variable.
The ncdump of wind data file looks like this:
netcdf wind {
Code: Select all
dimensions:
x = 362 ;
y = 263 ;
wind_time = UNLIMITED ; // (2920 currently)
variables:
float lon(y, x) ;
lon:standard_name = "longitude" ;
lon:long_name = "longitude" ;
lon:units = "degree_east" ;
lon:_CoordinateAxisType = "Lon" ;
float lat(y, x) ;
lat:standard_name = "latitude" ;
lat:long_name = "latitude" ;
lat:units = "degree_north" ;
lat:_CoordinateAxisType = "Lat" ;
double wind_time(wind_time) ;
wind_time:standard_name = "time" ;
wind_time:long_name = "10m wind time" ;
wind_time:units = "days since 1850-01-01 00:00:00" ;
wind_time:calendar = "gregorian," ;
wind_time:cycle_length = "365.," ;
float Vwind(wind_time, y, x) ;
Vwind:long_name = "v-wind component at 10m height" ;
Vwind:units = "ms-1" ;
Vwind:coordinates = "lon lat" ;
Vwind:field = "v-wind, scalar, series," ;
Vwind:time = "wind_time" ;
float Uwind(wind_time, y, x) ;
Uwind:long_name = "u-wind component at 10m height" ;
Uwind:units = "meter second-1" ;
Uwind:coordinates = "lon lat" ;
Uwind:field = "u-wind, scalar, series," ;
Uwind:time = "wind_time" ;
....
Thank you.
nilima