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
note from discussion above (not sure if this applies in our case, but good to keep in mind):
Array(v_cf) is not equivalent to v_cf.var[:] even in the vector case, because Array(v_cf) does Missing and DateTime conversion etc. The equivalent would be Array(v_cf.var).
As of NCDatasets.jl v0.13.0, the syntax
ds["var"][:]
is no longer supported, and should be replaced byArray(ds["var"])
.see discussion here: .var[:] always returns a vector JuliaGeo/NCDatasets.jl#233
see fix in RRTMGP.jl here: Change syntax to get NC data RRTMGP.jl#395
note from discussion above (not sure if this applies in our case, but good to keep in mind):
To Do
The text was updated successfully, but these errors were encountered: