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
Create a variable `name` in the dataset `ds` with the type `vtype` and the dimension `dimensionnames`.
61
+
62
+
For coordinate variables, fill values will be used a background value of undefined chunks and not as missing value as coordinate variables cannot have the `_FillValues` in the CF convension as in Zarr v2 format a `fill_value` does not necessarily indicate a missing value.
63
+
64
+
See also `CommonDataModel.defVar` for more information.
65
+
"""
47
66
function CDM.defVar(ds::ZarrDataset,name::SymbolOrString,vtype::DataType,dimensionnames; chunksizes=nothing, attrib =Dict(), fillvalue =nothing, kwargs...)
48
67
@assertiswritable(ds)
49
68
@@ -70,6 +89,8 @@ function CDM.defVar(ds::ZarrDataset,name::SymbolOrString,vtype::DataType,dimensi
0 commit comments