Skip to content

Commit 2a98098

Browse files
author
Médéric RIBREUX
committed
Fix r.li interfaces
1 parent 758f917 commit 2a98098

19 files changed

+19
-19
lines changed

python/plugins/processing/algs/grass7/description/r.li.cwed.ascii.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ Raster (r.*)
44
ParameterRaster|input|Name of input raster map|False
55
ParameterString|config_txt|Landscape structure configuration|None|True|True
66
ParameterFile|config|Landscape structure configuration file|False|True
7-
ParameterFile|path|Name of file that contains the weight to calculate the index|False
7+
ParameterFile|path|Name of file that contains the weight to calculate the index|False|False
88
OutputFile|output|CWED

python/plugins/processing/algs/grass7/description/r.li.cwed.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ Raster (r.*)
44
ParameterRaster|input|Name of input raster map|False
55
ParameterString|config_txt|Landscape structure configuration|None|True|True
66
ParameterFile|config|Landscape structure configuration file|False|True
7-
ParameterFile|path|Name of file that contains the weight to calculate the index|False
7+
ParameterFile|path|Name of file that contains the weight to calculate the index|False|False
88
OutputRaster|output|CWED

python/plugins/processing/algs/grass7/description/r.li.renyi.ascii.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ Raster (r.*)
44
ParameterRaster|input|Name of input raster map|False
55
ParameterString|config_txt|Landscape structure configuration|None|True|True
66
ParameterFile|config|Landscape structure configuration file|False|True
7-
ParameterString|alpha|Alpha value is the order of the generalized entropy|None|False|True
7+
ParameterString|alpha|Alpha value is the order of the generalized entropy|None|False|False
88
OutputFile|output|Renyi

python/plugins/processing/algs/grass7/description/r.li.renyi.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ Raster (r.*)
44
ParameterRaster|input|Name of input raster map|False
55
ParameterString|config_txt|Landscape structure configuration|None|True|True
66
ParameterFile|config|Landscape structure configuration file|False|True
7-
ParameterString|alpha|Alpha value is the order of the generalized entropy|None|False|True
7+
ParameterString|alpha|Alpha value is the order of the generalized entropy|None|False|False
88
OutputRaster|output|Renyi

python/plugins/processing/algs/grass7/ext/r_li_cwed.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030

3131
def checkParameterValuesBeforeExecuting(alg):
32-
checkMovingWindow(alg)
32+
return checkMovingWindow(alg)
3333

3434

3535
def processCommand(alg):

python/plugins/processing/algs/grass7/ext/r_li_edgedensity.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030

3131
def checkParameterValuesBeforeExecuting(alg):
32-
checkMovingWindow(alg)
32+
return checkMovingWindow(alg)
3333

3434

3535
def processCommand(alg):

python/plugins/processing/algs/grass7/ext/r_li_mpa.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030

3131
def checkParameterValuesBeforeExecuting(alg):
32-
checkMovingWindow(alg)
32+
return checkMovingWindow(alg)
3333

3434

3535
def processCommand(alg):

python/plugins/processing/algs/grass7/ext/r_li_mps.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030

3131
def checkParameterValuesBeforeExecuting(alg):
32-
checkMovingWindow(alg)
32+
return checkMovingWindow(alg)
3333

3434

3535
def processCommand(alg):

python/plugins/processing/algs/grass7/ext/r_li_padcv.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030

3131
def checkParameterValuesBeforeExecuting(alg):
32-
checkMovingWindow(alg)
32+
return checkMovingWindow(alg)
3333

3434

3535
def processCommand(alg):

python/plugins/processing/algs/grass7/ext/r_li_padrange.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030

3131
def checkParameterValuesBeforeExecuting(alg):
32-
checkMovingWindow(alg)
32+
return checkMovingWindow(alg)
3333

3434

3535
def processCommand(alg):

python/plugins/processing/algs/grass7/ext/r_li_padsd.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030

3131
def checkParameterValuesBeforeExecuting(alg):
32-
checkMovingWindow(alg)
32+
return checkMovingWindow(alg)
3333

3434

3535
def processCommand(alg):

python/plugins/processing/algs/grass7/ext/r_li_patchdensity.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030

3131
def checkParameterValuesBeforeExecuting(alg):
32-
checkMovingWindow(alg)
32+
return checkMovingWindow(alg)
3333

3434

3535
def processCommand(alg):

python/plugins/processing/algs/grass7/ext/r_li_patchnum.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030

3131
def checkParameterValuesBeforeExecuting(alg):
32-
checkMovingWindow(alg)
32+
return checkMovingWindow(alg)
3333

3434

3535
def processCommand(alg):

python/plugins/processing/algs/grass7/ext/r_li_pielou.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030

3131
def checkParameterValuesBeforeExecuting(alg):
32-
checkMovingWindow(alg)
32+
return checkMovingWindow(alg)
3333

3434

3535
def processCommand(alg):

python/plugins/processing/algs/grass7/ext/r_li_renyi.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030

3131
def checkParameterValuesBeforeExecuting(alg):
32-
checkMovingWindow(alg)
32+
return checkMovingWindow(alg)
3333

3434

3535
def processCommand(alg):

python/plugins/processing/algs/grass7/ext/r_li_richness.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030

3131
def checkParameterValuesBeforeExecuting(alg):
32-
checkMovingWindow(alg)
32+
return checkMovingWindow(alg)
3333

3434

3535
def processCommand(alg):

python/plugins/processing/algs/grass7/ext/r_li_shannon.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030

3131
def checkParameterValuesBeforeExecuting(alg):
32-
checkMovingWindow(alg)
32+
return checkMovingWindow(alg)
3333

3434

3535
def processCommand(alg):

python/plugins/processing/algs/grass7/ext/r_li_shape.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030

3131
def checkParameterValuesBeforeExecuting(alg):
32-
checkMovingWindow(alg)
32+
return checkMovingWindow(alg)
3333

3434

3535
def processCommand(alg):

python/plugins/processing/algs/grass7/ext/r_li_simpson.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030

3131
def checkParameterValuesBeforeExecuting(alg):
32-
checkMovingWindow(alg)
32+
return checkMovingWindow(alg)
3333

3434

3535
def processCommand(alg):

0 commit comments

Comments
 (0)