File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
python/plugins/processing/algs/gdal Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ def defineCharacteristics(self):
71
71
self .addParameter (ParameterSelection (self .EXPAND , 'Expand' ,
72
72
['none' , 'gray' , 'rgb' , 'rgba' ]))
73
73
self .addParameter (ParameterCrs (self .SRS ,
74
- 'Override the projection for the output file' , None ))
74
+ 'Output projection for output file [leave blank to use input projection] ' , None ))
75
75
self .addParameter (ParameterExtent (self .PROJWIN ,
76
76
'Subset based on georeferenced coordinates' ))
77
77
self .addParameter (ParameterBoolean (self .SDS ,
@@ -115,7 +115,7 @@ def processAlgorithm(self, progress):
115
115
arguments .append (regionCoords [3 ])
116
116
arguments .append (regionCoords [1 ])
117
117
arguments .append (regionCoords [2 ])
118
- if crsId is not None :
118
+ if crsId :
119
119
arguments .append ('-a_srs' )
120
120
arguments .append (str (crsId ))
121
121
if sds :
You can’t perform that action at this time.
0 commit comments