@@ -80,7 +80,7 @@ def defineCharacteristics(self):
80
80
self .tr ('Pixel size to be used for the output file (XSIZE YSIZE like 512 512)' ),
81
81
None , False , True ))
82
82
params .append (ParameterSelection (self .ALGORITHM ,
83
- self .tr ('Resampling algorithm' ), self .ALGO , 0 , False , True ))
83
+ self .tr ('Resampling algorithm' ), self .ALGO , 0 , False , optional = True ))
84
84
params .append (ParameterCrs (self .S_SRS ,
85
85
self .tr ('Override source CRS' ), None , True ))
86
86
params .append (ParameterNumber (self .PYRAMIDLEVELS ,
@@ -91,10 +91,10 @@ def defineCharacteristics(self):
91
91
False , True ))
92
92
params .append (ParameterSelection (self .RTYPE ,
93
93
self .tr ('Output raster type' ),
94
- self .TYPE , 5 , False , True ))
94
+ self .TYPE , 5 , False , optional = True ))
95
95
params .append (ParameterSelection (self .FORMAT ,
96
96
self .tr ('Output raster format' ),
97
- list (GdalUtils .getSupportedRasters ().keys ()), 0 , False , True ))
97
+ list (GdalUtils .getSupportedRasters ().keys ()), 0 , False , optional = True ))
98
98
params .append (ParameterBoolean (self .USEDIRFOREACHROW ,
99
99
self .tr ('Use a directory for each row' ),
100
100
False , True ))
0 commit comments