mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-13 00:03:09 -04:00
[processing] extent is mandatory parameter for interpolation algorithms
This commit is contained in:
parent
ce88da6eb9
commit
f01b2f0597
@ -134,7 +134,8 @@ class IdwInterpolation(GeoAlgorithm):
|
||||
self.tr('Cell Size Y'),
|
||||
0.0, 999999.000000, 0.0))
|
||||
self.addParameter(ParameterExtent(self.EXTENT,
|
||||
self.tr('Extent')))
|
||||
self.tr('Extent'),
|
||||
optional=False))
|
||||
self.addOutput(OutputRaster(self.OUTPUT_LAYER,
|
||||
self.tr('Interpolated')))
|
||||
|
||||
|
@ -143,7 +143,8 @@ class TinInterpolation(GeoAlgorithm):
|
||||
self.tr('Cell size Y'),
|
||||
0.0, 999999.000000, 0.0))
|
||||
self.addParameter(ParameterExtent(self.EXTENT,
|
||||
self.tr('Extent')))
|
||||
self.tr('Extent'),
|
||||
optional=False))
|
||||
self.addOutput(OutputRaster(self.OUTPUT_LAYER,
|
||||
self.tr('Interpolated')))
|
||||
self.addOutput(OutputVector(self.TRIANULATION_FILE,
|
||||
|
Loading…
x
Reference in New Issue
Block a user