Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
[processing] Fix IDW parameter value creation
- Loading branch information
Showing
with
5 additions
and
5 deletions.
-
+5
−5
python/plugins/processing/algs/qgis/ui/InterpolationWidgets.py
|
@@ -201,11 +201,11 @@ def value(self): |
|
|
else: |
|
|
inputType = QgsInterpolator.SourceBreakLines |
|
|
|
|
|
layers += '{}::~::{:d}::~::{:d}::~::{:d}::|::'.format(layer.source(), |
|
|
interpolationSource, |
|
|
fieldIndex, |
|
|
inputType) |
|
|
return layers[:-1] |
|
|
layers += '{}::~::{:d}::~::{:d}::~::{:d}::|::'.format(layer.source(), |
|
|
interpolationSource, |
|
|
fieldIndex, |
|
|
inputType) |
|
|
return layers[:-len('::|::')] |
|
|
|
|
|
|
|
|
class InterpolationDataWidgetWrapper(WidgetWrapper): |
|
|