|
1 | 1 |
|
2 | 2 | ## ZarrDatasets
|
3 | 3 |
|
| 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 | + |
4 | 43 | ```@autodocs
|
5 | 44 | Modules = [ZarrDatasets]
|
6 | 45 | ```
|
7 | 46 |
|
8 | 47 |
|
| 48 | + |
| 49 | + |
| 50 | + |
9 | 51 | ### Differences between Zarr and NetCDF files
|
10 | 52 |
|
11 | 53 | * All metadata (in particular attributes) is stored in JSON files for the Zarr format with the following implications:
|
12 | 54 | * 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.
|
13 | 55 | * 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. |
0 commit comments