@@ -74,11 +74,11 @@ def create(shape, chunks=True, dtype=None, compressor='default',
74
74
.. versionadded:: 2.8
75
75
76
76
write_empty_chunks : bool, optional
77
- If True, all chunks will be stored regardless of their contents. If
78
- False (default) , each chunk is compared to the array's fill value prior
79
- to storing. If a chunk is uniformly equal to the fill value, then that
80
- chunk is not be stored, and the store entry for that chunk's key is
81
- deleted. This setting enables sparser storage, as only chunks with
77
+ If True (default) , all chunks will be stored regardless of their
78
+ contents. If False , each chunk is compared to the array's fill value
79
+ prior to storing. If a chunk is uniformly equal to the fill value, then
80
+ that chunk is not be stored, and the store entry for that chunk's key
81
+ is deleted. This setting enables sparser storage, as only chunks with
82
82
non-fill-value data are stored, at the expense of overhead associated
83
83
with checking the data of each chunk.
84
84
@@ -403,7 +403,7 @@ def open_array(
403
403
chunk_store = None ,
404
404
storage_options = None ,
405
405
partial_decompress = False ,
406
- write_empty_chunks = False ,
406
+ write_empty_chunks = True ,
407
407
* ,
408
408
zarr_version = None ,
409
409
dimension_separator = None ,
@@ -462,11 +462,11 @@ def open_array(
462
462
is Blosc, when getting data from the array chunks will be partially
463
463
read and decompressed when possible.
464
464
write_empty_chunks : bool, optional
465
- If True, all chunks will be stored regardless of their contents. If
466
- False (default) , each chunk is compared to the array's fill value prior
467
- to storing. If a chunk is uniformly equal to the fill value, then that
468
- chunk is not be stored, and the store entry for that chunk's key is
469
- deleted. This setting enables sparser storage, as only chunks with
465
+ If True (default) , all chunks will be stored regardless of their
466
+ contents. If False , each chunk is compared to the array's fill value
467
+ prior to storing. If a chunk is uniformly equal to the fill value, then
468
+ that chunk is not be stored, and the store entry for that chunk's key
469
+ is deleted. This setting enables sparser storage, as only chunks with
470
470
non-fill-value data are stored, at the expense of overhead associated
471
471
with checking the data of each chunk.
472
472
0 commit comments