Skip to content

Commit 1e2b59a

Browse files
DelazJnyalldawson
authored andcommittedJun 11, 2019
Make the target crs optional in gdal warp algorithm [needs-docs]
1 parent 8849cd9 commit 1e2b59a

File tree

1 file changed

+1
-1
lines changed
  • python/plugins/processing/algs/gdal

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/algs/gdal/warp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def initAlgorithm(self, config=None):
8484
optional=True))
8585
self.addParameter(QgsProcessingParameterCrs(self.TARGET_CRS,
8686
self.tr('Target CRS'),
87-
'EPSG:4326'))
87+
optional=True))
8888
self.addParameter(QgsProcessingParameterEnum(self.RESAMPLING,
8989
self.tr('Resampling method to use'),
9090
options=[i[0] for i in self.methods],

0 commit comments

Comments
 (0)
Please sign in to comment.