Skip to content

Commit b173374

Browse files
more example in the docs
1 parent 9434153 commit b173374

File tree

3 files changed

+54
-7
lines changed

3 files changed

+54
-7
lines changed

docs/src/index.md

+44-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,57 @@
11

22
## ZarrDatasets
33

4+
5+
See the [documentation of JuliaGeo/CommonDataModel.jl](https://juliageo.org/CommonDataModel.jl/stable/) for the full documentation of the API. As a quick reference, here is an example how to create and read a Zarr file store as a quick reference.
6+
7+
### Create a Zarr file store
8+
9+
The following example create a Zarr file store in the directory `"/tmp/test-zarr"`:
10+
11+
```julia
12+
using ZarrDatasets
13+
14+
# sample data
15+
data = [i+j for i = 1:3, j = 1:5]
16+
17+
directoryname = "/tmp/test-zarr4"
18+
mkdir(directoryname)
19+
20+
ds = ZarrDataset(directoryname,"c")
21+
defDim(ds,"lon",size(data,1))
22+
defDim(ds,"lat",size(data,2))
23+
zv = defVar(ds,"varname",Int64,("lon","lat"))
24+
zv[:,:] = data
25+
zv.attrib["units"] = "m"
26+
close(ds)
27+
```
28+
29+
### Loading a Zarr file store
30+
31+
The data and units can be loaded by indexing the data set structure `ds`.
32+
33+
```julia
34+
using ZarrDatasets
35+
directoryname = "/tmp/test-zarr4"
36+
ds = ZarrDataset(directoryname)
37+
data = ds["varname"][:,:]
38+
data_units = ds["varname"].attrib["units"]
39+
```
40+
41+
42+
443
```@autodocs
544
Modules = [ZarrDatasets]
645
```
746

847

48+
49+
50+
951
### Differences between Zarr and NetCDF files
1052

1153
* All metadata (in particular attributes) is stored in JSON files for the Zarr format with the following implications:
1254
* JSON does not distinguish between integers and real numbers. They are all considered as generic numbers. Whole numbers are loaded as `Int64` and real numbers `Float64`. It is not possible to store the number `1.0` as a real number.
1355
* The order of keys in a JSON document is undefined. It is therefore not possible to have a consistent ordering of the attributes or variables.
14-
* The JSON standard does not allow the values NaN, +Inf, -Inf which is problematic for attributes ([zarr-python #412](https://github.com/zarr-developers/zarr-python/issues/412),
15-
[zarr-specs #81](https://github.com/zarr-developers/zarr-specs/issues/81)). However, there is a special case for the fill-value to handle NaN, +Inf and -Inf.
56+
* The JSON standard does not allow the values NaN, +Inf, -Inf which is problematic for attributes ([zarr-python #412](https://github.com/zarr-developers/zarr-python/issues/412), [zarr-specs #81](https://github.com/zarr-developers/zarr-specs/issues/81)). However, there is a special case for the fill-value to handle NaN, +Inf and -Inf.
57+
* All dimensions must be associated to Zarr variables.

src/dataset.jl

+9-5
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,16 @@ CDM.maskingvalue(ds::ZarrDataset) = ds.maskingvalue
6666
ZarrDataset(f::Function,url::AbstractString,mode = "r";
6767
maskingvalue = missing)
6868
69-
Open the zarr dataset at the url or path `url`. The mode can only be "r" (read-only)
70-
or "c" (create). `ds` supports the API of the
69+
Open the zarr dataset at the url or path `url`. The mode can only be `"r"` (read-only)
70+
or `"c"` (create). `ds` supports the API of the
7171
[JuliaGeo/CommonDataModel.jl](https://github.com/JuliaGeo/CommonDataModel.jl).
72-
The experimental `_omitcode` allows to work-around servers that return
73-
a HTTP error different than 404 for missing chunks.
72+
The experimental `_omitcode` allows to define which HTTP error code should be used
73+
for missing chunks. For compatibility with python's Zarr, the HTTP error 403
74+
(permission denied) is also used to missing chunks in addition to 404 (not
75+
found).
76+
77+
The parameter `maskingvalue` allows to define which special value should be used
78+
as replacement for fill values. The default is `missing`.
7479
7580
Example:
7681
@@ -101,7 +106,6 @@ zos1 = ZarrDataset(url) do ds
101106
ds["zos"][:,:,end,1]
102107
end # implicit call to close(ds)
103108
```
104-
105109
"""
106110
function ZarrDataset(url::AbstractString,mode = "r";
107111
parentdataset = nothing,

src/variable.jl

+1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ function CDM.defVar(ds::ZarrDataset,name::SymbolOrString,vtype::DataType,dimensi
5858
if isnothing(chunksizes)
5959
chunksizes = _size
6060
end
61+
6162
zarray = zcreate(
6263
vtype, ds.zgroup, name, _size...;
6364
chunks = chunksizes,

0 commit comments

Comments
 (0)