Skip to content

Commit c35567b

Browse files
committedFeb 4, 2016
Merge pull request #2746 from NaturalGIS/fix_grass_r_slope_aspect
[processing] add parameter to GRASS 64/70 r.slope.aspect to allow use region resolution (ref #9979)
2 parents 3b2a76f + 191c011 commit c35567b

File tree

6 files changed

+9
-3
lines changed

6 files changed

+9
-3
lines changed
 

‎python/plugins/processing/algs/grass/description/r.aspect.txt‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ r.aspect - Generates raster maps of aspect from a elevation raster map.
33
Raster (r.*)
44
ParameterRaster|elevation|Elevation|False
55
ParameterSelection|prec|Data type|float;double;int
6+
ParameterBoolean|-a|Do not align the current region to the elevation layer|True
67
ParameterNumber|zfactor|Multiplicative factor to convert elevation units to meters|None|None|1.0
78
ParameterNumber|min_slp_allowed|Minimum slope val. (in percent) for which aspect is computed|None|None|0.0
89
OutputRaster|aspect|Aspect

‎python/plugins/processing/algs/grass/description/r.slope.aspect.txt‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Raster (r.*)
44
ParameterRaster|elevation|Elevation|False
55
ParameterSelection|format|Format for reporting the slope|degrees;percent
66
ParameterSelection|prec|Type of output aspect and slope layer|float;double;int
7+
ParameterBoolean|-a|Do not align the current region to the elevation layer|True
78
ParameterNumber|zfactor|Multiplicative factor to convert elevation units to meters|None|None|1.0
89
ParameterNumber|min_slp_allowed|Minimum slope val. (in percent) for which aspect is computed|None|None|0.0
910
OutputRaster|slope|Slope

‎python/plugins/processing/algs/grass/description/r.slope.txt‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Raster (r.*)
44
ParameterRaster|elevation|Name of elevation raster map|False
55
ParameterSelection|format|Format for reporting the slope|degrees;percent
66
ParameterSelection|prec|Type of output aspect and slope maps|float;double;int
7+
ParameterBoolean|-a|Do not align the current region to the elevation layer|True
78
ParameterNumber|zfactor|Multiplicative factor to convert elevation units to meters|None|None|1.0
89
ParameterNumber|min_slp_allowed|Minimum slope val. (in percent) for which aspect is computed|None|None|0.0
910
ParameterBoolean|-a|Do not align the current region to the elevation layer|True

‎python/plugins/processing/algs/grass7/description/r.aspect.txt‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ r.slope.aspect
22
r.aspect - Generates raster maps of aspect from a elevation raster map.
33
Raster (r.*)
44
ParameterRaster|elevation|Elevation|False
5-
ParameterSelection|precision|Data type|CELL;FCELL;DCELL
5+
ParameterSelection|precision|Data type|FCELL;CELL;DCELL
6+
ParameterBoolean|-a|Do not align the current region to the elevation layer|True
67
ParameterNumber|zfactor|Multiplicative factor to convert elevation units to meters|None|None|1.0
78
ParameterNumber|min_slope|Minimum slope val. (in percent) for which aspect is computed|None|None|0.0
89
OutputRaster|aspect|Aspect

‎python/plugins/processing/algs/grass7/description/r.slope.aspect.txt‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ Generates raster layers of slope, aspect, curvatures and partial derivatives fro
33
Raster (r.*)
44
ParameterRaster|elevation|Elevation|False
55
ParameterSelection|format|Format for reporting the slope|degrees;percent
6-
ParameterSelection|precision|Type of output aspect and slope layer|CELL;FCELL;DCELL
6+
ParameterSelection|precision|Type of output aspect and slope layer|FCELL;CELL;DCELL
7+
ParameterBoolean|-a|Do not align the current region to the elevation layer|True
78
ParameterNumber|zscale|Multiplicative factor to convert elevation units to meters|None|None|1.0
89
ParameterNumber|min_slope|Minimum slope val. (in percent) for which aspect is computed|None|None|0.0
910
OutputRaster|slope|Slope

‎python/plugins/processing/algs/grass7/description/r.slope.txt‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ r.slope.aspect
22
r.slope - Generates raster maps of slope from a elevation raster map.
33
Raster (r.*)
44
ParameterRaster|elevation|Elevation|False
5-
ParameterSelection|precision|Data type|CELL;FCELL;DCELL
5+
ParameterSelection|precision|Data type|FCELL;CELL;DCELL
6+
ParameterBoolean|-a|Do not align the current region to the elevation layer|True
67
ParameterNumber|zfactor|Multiplicative factor to convert elevation units to meters|None|None|1.0
78
ParameterNumber|min_slope|Minimum slope val. (in percent) for which aspect is computed|None|None|0.0
89
OutputRaster|slope|Slope

0 commit comments

Comments
 (0)
Please sign in to comment.