Hi,
I've been using iris.save() to write iris cubes out to netCDF. When I do an ncdump of the output files some of the attributes are designated as "string", e.g:
variables:
double thetao(time, lev, j, i) ;
thetao:_FillValue = 1.e+20 ;
string thetao:standard_name = "sea_water_potential_temperature" ;
string thetao:long_name = "Sea Water Potential Temperature" ;
thetao:units = "K" ;
thetao:coordinates = "lat lon" ;
double time(time) ;
time:axis = "T" ;
time:bounds = "time_bnds" ;
time:units = "days since 0001-01-01" ;
string time:standard_name = "time" ;
string time:long_name = "time" ;
string time:calendar = "proleptic_gregorian" ;
Iris seems to have no problem with these attributes (i.e. I can read the netCDF file with iris), but other applications (e.g. cdo) sometimes do.
Does anyone know how to stop this behaviour?
Regards,
Damien