Hi,
file axis units are not synched between the .attributes dict and the .units attributes, which make calls to clone set "units" to "".
Its seems due to :
- in dataset.py:
cufile.dimensioninfo[name] = ('', .....)
- in axis.py :
self.__dict__['_units'] = units where units is the first items of dimensioninfo, which is always '', and att['units'] = units.
This is particularly problematic for time axes...
Hi,
file axis units are not synched between the
.attributesdict and the.unitsattributes, which make calls tocloneset "units" to "".Its seems due to :
cufile.dimensioninfo[name] = ('', .....)self.__dict__['_units'] = unitswhereunitsis the first items ofdimensioninfo, which is always'', andatt['units'] = units.This is particularly problematic for time axes...