From f1fc89e517461684f6abac6ebba2a416fc7b858e Mon Sep 17 00:00:00 2001 From: Piero Toffanin Date: Tue, 12 Jul 2022 14:28:41 -0400 Subject: [PATCH] Fix: multiple values for keyword argument BIGTIFF --- opendm/dem/merge.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opendm/dem/merge.py b/opendm/dem/merge.py index 6647e505..fdeef93a 100644 --- a/opendm/dem/merge.py +++ b/opendm/dem/merge.py @@ -92,7 +92,7 @@ def euclidean_merge_dems(input_dems, output_dem, creation_options={}, euclidean_ profile.update(creation_options) # create destination file - with rasterio.open(output_dem, "w", BIGTIFF="IF_SAFER", **profile) as dstrast: + with rasterio.open(output_dem, "w", **profile) as dstrast: for idx, dst_window in dstrast.block_windows():