You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -259,27 +262,53 @@ class DeltaFilter(CompressionFilter):
259
262
260
263
:param level: -1 (default) sets the compressor level to the default level as specified in TileDB core. Otherwise, sets the compressor level to the given value.
261
264
:type level: int
262
-
265
+
:param reinterp_dtype: (optional) sets the compressor to compress the data treating
266
+
as the new datatype.
267
+
:type reinterp_dtype: numpy, lt.DataType
263
268
**Example:**
264
269
265
270
>>> import tiledb, numpy as np, tempfile
266
271
>>> with tempfile.TemporaryDirectory() as tmp:
267
272
... dom = tiledb.Domain(tiledb.Dim(domain=(0, 9), tile=2, dtype=np.uint64))
@@ -288,6 +317,8 @@ class DoubleDeltaFilter(CompressionFilter):
288
317
289
318
:param level: -1 (default) sets the compressor level to the default level as specified in TileDB core. Otherwise, sets the compressor level to the given value.
290
319
:type level: int
320
+
:param reinterp_dtype: (optional) sets the compressor to compress the data treating
321
+
as the new datatype.
291
322
292
323
**Example:**
293
324
@@ -301,14 +332,38 @@ class DoubleDeltaFilter(CompressionFilter):
0 commit comments