From dc763e486f30fea7bce6762399ff10159c11367e Mon Sep 17 00:00:00 2001 From: Piero Toffanin Date: Tue, 12 Jul 2022 14:34:13 -0400 Subject: [PATCH] Remove duplicate BIGTIFF directive --- opendm/orthophoto.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opendm/orthophoto.py b/opendm/orthophoto.py index 62b103d9..d2d30bbc 100644 --- a/opendm/orthophoto.py +++ b/opendm/orthophoto.py @@ -243,7 +243,7 @@ def merge(input_ortho_and_ortho_cuts, output_orthophoto, orthophoto_vars={}): profile.update() # create destination file - with rasterio.open(output_orthophoto, "w", BIGTIFF="IF_SAFER", **profile) as dstrast: + with rasterio.open(output_orthophoto, "w", **profile) as dstrast: dstrast.colorinterp = colorinterp for idx, dst_window in dstrast.block_windows(): left, bottom, right, top = dstrast.window_bounds(dst_window)