We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0da880 commit 323c658Copy full SHA for 323c658
python/plugins/processing/algs/gdal/ClipByMask.py
@@ -193,6 +193,9 @@ def getConsoleCommands(self):
193
194
arguments.append("-wo OPTIMIZE_SIZE=TRUE")
195
196
+ if GdalUtils.version() in [2010000, 2010100]:
197
+ arguments.append("--config GDALWARP_IGNORE_BAD_CUTLINE YES")
198
+
199
arguments.append(self.getParameterValue(self.INPUT))
200
arguments.append(out)
201
python/plugins/processing/algs/gdal/warp.py
@@ -198,6 +198,9 @@ def getConsoleCommands(self):
202
203
204
205
206
0 commit comments