You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ClimaAnalysis.jl relies on Unitful.jl to do the automatic unit conversion for us. It look like if you set the units to "kg/kg", then you get the following for the units:
It appears that if a variable has units
kg kg^-1
, conversion, e.g. tog / kg
will not work out-of-the-box.Instead it is needed to first
var2 = set_units(var, "kg/kg")
(which actually removes units), thenconvert_units(var2, "g/kg")
The text was updated successfully, but these errors were encountered: