Skip to content

Commit e5e3fd7

Browse files
committed
Add docs for the compression lab v0.3.0
1 parent 89041e4 commit e5e3fd7

File tree

3 files changed

+27
-13
lines changed

3 files changed

+27
-13
lines changed

docs/compression/index.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@ The **Online Laboratory for Data Compression** comes with several Jupyter notebo
1414

1515
The following is an overview of all notebooks (clicking a link opens the specified file in the online compression laboratory):
1616

17-
- [`01-intro.ipynb`](https://compression.lab.climet.eu/v0.2/01-intro.ipynb): First introduction to the online laboratory, data loading, compression, and visualisation
18-
- [`02-data-sources/`](https://compression.lab.climet.eu/v0.2/02-data-sources/README.md): Small examples on how to open datasets from different sources
19-
- [`01-local.ipynb`](https://compression.lab.climet.eu/v0.2/02-data-sources/01-local.ipynb): open a large local read-only dataset by mounting it into the online lab
20-
- [`02-remote.ipynb`](https://compression.lab.climet.eu/v0.2/02-data-sources/02-remote.ipynb): open large remote datasets using `fsspec`, `kerchunk`, and `zarr`
21-
- [`03-cdsapi.ipynb`](https://compression.lab.climet.eu/v0.2/02-data-sources/03-cdsapi.ipynb): download small datasets from the Climate Data Store using the `cdsapi`
22-
- [`04-ecmwfapi.ipynb`](https://compression.lab.climet.eu/v0.2/02-data-sources/04-ecmwfapi.ipynb): download small datasets from the ECMWF Archive using the `ecmwfapi`
23-
- [`03-examples/`](https://compression.lab.climet.eu/v0.2/03-examples/README.md): Longer walkthrough examples that apply and evaluate data compression on different variables
24-
- [`01-compressors.ipynb`](https://compression.lab.climet.eu/v0.2/03-examples/01-compressors.ipynb): comparison of different compressors on a small temperature and specific humidity dataset
25-
- [`04-example-datasets/`](https://compression.lab.climet.eu/v0.2/04-example-datasets/README.md): Example datasets and access via an S3 bucket
26-
- [`01-hplp.ipynb`](https://compression.lab.climet.eu/v0.2/04-example-datasets/01-hplp.ipynb): open hplp-experiment dataset from the ECMWF S3 bucket
27-
- [`02-OpenIFS.ipynb`](https://compression.lab.climet.eu/v0.2/04-example-datasets/02-OpenIFS.ipynb): open OpenIFS-experiment dataset from the ECMWF S3 bucket
28-
- [`03-NextGEMS.ipynb`](https://compression.lab.climet.eu/v0.2/04-example-datasets/03-NextGEMS.ipynb): open NextGEMS-experiment dataset from the ECMWF S3 bucket
29-
- [`04-ICONXPP.ipynb`](https://compression.lab.climet.eu/v0.2/04-example-datasets/04-ICONXPP.ipynb): open ICON-XPP-experiment dataset from the ECMWF S3 bucket
17+
- [`01-intro.ipynb`](https://compression.lab.climet.eu/v0.3/01-intro.ipynb): First introduction to the online laboratory, data loading, compression, and visualisation
18+
- [`02-data-sources/`](https://compression.lab.climet.eu/v0.3/02-data-sources/README.md): Small examples on how to open datasets from different sources
19+
- [`01-local.ipynb`](https://compression.lab.climet.eu/v0.3/02-data-sources/01-local.ipynb): open a large local read-only dataset by mounting it into the online lab
20+
- [`02-remote.ipynb`](https://compression.lab.climet.eu/v0.3/02-data-sources/02-remote.ipynb): open large remote datasets using `fsspec`, `kerchunk`, and `zarr`
21+
- [`03-cdsapi.ipynb`](https://compression.lab.climet.eu/v0.3/02-data-sources/03-cdsapi.ipynb): download small datasets from the Climate Data Store using the `cdsapi`
22+
- [`04-ecmwfapi.ipynb`](https://compression.lab.climet.eu/v0.3/02-data-sources/04-ecmwfapi.ipynb): download small datasets from the ECMWF Archive using the `ecmwfapi`
23+
- [`03-examples/`](https://compression.lab.climet.eu/v0.3/03-examples/README.md): Longer walkthrough examples that apply and evaluate data compression on different variables
24+
- [`01-compressors.ipynb`](https://compression.lab.climet.eu/v0.3/03-examples/01-compressors.ipynb): comparison of different compressors on a small temperature and specific humidity dataset
25+
- [`04-example-datasets/`](https://compression.lab.climet.eu/v0.3/04-example-datasets/README.md): Example datasets and access via an S3 bucket
26+
- [`01-hplp.ipynb`](https://compression.lab.climet.eu/v0.3/04-example-datasets/01-hplp.ipynb): open hplp-experiment dataset from the ECMWF S3 bucket
27+
- [`02-OpenIFS.ipynb`](https://compression.lab.climet.eu/v0.3/04-example-datasets/02-OpenIFS.ipynb): open OpenIFS-experiment dataset from the ECMWF S3 bucket
28+
- [`03-NextGEMS.ipynb`](https://compression.lab.climet.eu/v0.3/04-example-datasets/03-NextGEMS.ipynb): open NextGEMS-experiment dataset from the ECMWF S3 bucket
29+
- [`04-ICONXPP.ipynb`](https://compression.lab.climet.eu/v0.3/04-example-datasets/04-ICONXPP.ipynb): open ICON-XPP-experiment dataset from the ECMWF S3 bucket
3030

3131

3232
## Getting Help and Contributing
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# v0.3.0
2+
3+
- Release on 25.04.2025
4+
- GitHub release <https://github.com/climet-eu/compression-lab-notebooks/releases/tag/v0.3.0>
5+
6+
## Changelog
7+
8+
- Use the `numcodecs-wasm-*` family of packages for reproducible compression, see <https://numcodecs-wasm.readthedocs.io>
9+
- Use the `numcodecs-combinators` package for creating codec stacks
10+
- Use the `numcodecs-observers` package for collecting measurements during compression
11+
- Use the `zarr-any-numcodecs` package to adapt `numcodecs` codecs as `zarr` v3 codecs
12+
- Updated to the online laboratory v0.3.0

mkdocs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ nav:
6464
- Online Compression Laboratory:
6565
- Overview: compression/index.md
6666
- Versions:
67+
- v0.3:
68+
- v0.3.0: compression/versions/v0.3.0.md
6769
- v0.2:
6870
- v0.2.1: compression/versions/v0.2.1.md
6971
- v0.2.0: compression/versions/v0.2.0.md

0 commit comments

Comments
 (0)