Skip to content

Commit

Permalink
Merge pull request #121 from observingClouds/fix_119
Browse files Browse the repository at this point in the history
deactivate default compression when writing to zarr
  • Loading branch information
observingClouds committed Jul 30, 2022
2 parents 65bded6 + 282031d commit a999130
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/quick-start.ipynb
Expand Up @@ -204,7 +204,9 @@
"source": [
"ds_bitrounded.to_compressed_zarr(\"bitrounded_compressed.zarr\", mode=\"w\")\n",
"ds.to_compressed_zarr(\"compressed.zarr\", mode=\"w\")\n",
"ds.to_zarr(\"original.zarr\", mode=\"w\");"
"ds.to_zarr(\n",
" \"original.zarr\", mode=\"w\", encoding={v: {\"compressor\": None} for v in ds.data_vars}\n",
");"
]
},
{
Expand Down

0 comments on commit a999130

Please sign in to comment.