Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Write multi-level datasets #102

Merged
merged 19 commits into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[run]
omit =
zappend/levels.py
16 changes: 16 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## Version 0.8.0 (in development)

* Added experimental function `zappend.levels.write_levels()` that generates
datasets using the
[multi-level dataset format](https://xcube.readthedocs.io/en/latest/mldatasets.html)
as specified by
[xcube](https://github.com/xcube-dev/xcube).
It resembles the `store.write_data(cube, "<name>.levels", ...)` method
provided by the xcube filesystem data stores ("file", "s3", "memory", etc.).
The zappend version may be used for potentially very large datasets in terms
of dimension sizes or for datasets with very large number of chunks.
It is considerably slower than the xcube version (which basically uses
`xarray.to_zarr()` for each resolution level), but should run robustly with
stable memory consumption.
The function requires `xcube` package to be installed. (#19)

## Version 0.7.1 (from 2024-05-30)

* The function `zappend.api.zappend()` now returns the number of slices
Expand Down
6 changes: 6 additions & 0 deletions docs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,9 @@ All described objects can be imported from the `zappend.api` module.
::: zappend.api.ConfigLike
options:
show_root_heading: true

## Function `write_levels()` for `xcube`

::: zappend.levels.write_levels
options:
show_root_heading: true
3 changes: 3 additions & 0 deletions tests/contrib/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Copyright © 2024 Norman Fomferra and contributors
# Permissions are hereby granted under the terms of the MIT License:
# https://opensource.org/licenses/MIT.
Loading
Loading