Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Make the target crs optional in gdal warp algorithm [needs-docs]
  • Loading branch information
DelazJ authored and nyalldawson committed Jun 11, 2019
1 parent 8849cd9 commit 1e2b59a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/gdal/warp.py
Expand Up @@ -84,7 +84,7 @@ def initAlgorithm(self, config=None):
optional=True))
self.addParameter(QgsProcessingParameterCrs(self.TARGET_CRS,
self.tr('Target CRS'),
'EPSG:4326'))
optional=True))
self.addParameter(QgsProcessingParameterEnum(self.RESAMPLING,
self.tr('Resampling method to use'),
options=[i[0] for i in self.methods],
Expand Down

0 comments on commit 1e2b59a

Please sign in to comment.