mirror of
https://github.com/qgis/QGIS.git
synced 2025-06-19 00:02:48 -04:00
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)
This commit is contained in:
commit
c35567b327
@ -3,6 +3,7 @@ r.aspect - Generates raster maps of aspect from a elevation raster map.
|
||||
Raster (r.*)
|
||||
ParameterRaster|elevation|Elevation|False
|
||||
ParameterSelection|prec|Data type|float;double;int
|
||||
ParameterBoolean|-a|Do not align the current region to the elevation layer|True
|
||||
ParameterNumber|zfactor|Multiplicative factor to convert elevation units to meters|None|None|1.0
|
||||
ParameterNumber|min_slp_allowed|Minimum slope val. (in percent) for which aspect is computed|None|None|0.0
|
||||
OutputRaster|aspect|Aspect
|
||||
|
@ -4,6 +4,7 @@ Raster (r.*)
|
||||
ParameterRaster|elevation|Elevation|False
|
||||
ParameterSelection|format|Format for reporting the slope|degrees;percent
|
||||
ParameterSelection|prec|Type of output aspect and slope layer|float;double;int
|
||||
ParameterBoolean|-a|Do not align the current region to the elevation layer|True
|
||||
ParameterNumber|zfactor|Multiplicative factor to convert elevation units to meters|None|None|1.0
|
||||
ParameterNumber|min_slp_allowed|Minimum slope val. (in percent) for which aspect is computed|None|None|0.0
|
||||
OutputRaster|slope|Slope
|
||||
|
@ -4,6 +4,7 @@ Raster (r.*)
|
||||
ParameterRaster|elevation|Name of elevation raster map|False
|
||||
ParameterSelection|format|Format for reporting the slope|degrees;percent
|
||||
ParameterSelection|prec|Type of output aspect and slope maps|float;double;int
|
||||
ParameterBoolean|-a|Do not align the current region to the elevation layer|True
|
||||
ParameterNumber|zfactor|Multiplicative factor to convert elevation units to meters|None|None|1.0
|
||||
ParameterNumber|min_slp_allowed|Minimum slope val. (in percent) for which aspect is computed|None|None|0.0
|
||||
ParameterBoolean|-a|Do not align the current region to the elevation layer|True
|
||||
|
@ -2,7 +2,8 @@ r.slope.aspect
|
||||
r.aspect - Generates raster maps of aspect from a elevation raster map.
|
||||
Raster (r.*)
|
||||
ParameterRaster|elevation|Elevation|False
|
||||
ParameterSelection|precision|Data type|CELL;FCELL;DCELL
|
||||
ParameterSelection|precision|Data type|FCELL;CELL;DCELL
|
||||
ParameterBoolean|-a|Do not align the current region to the elevation layer|True
|
||||
ParameterNumber|zfactor|Multiplicative factor to convert elevation units to meters|None|None|1.0
|
||||
ParameterNumber|min_slope|Minimum slope val. (in percent) for which aspect is computed|None|None|0.0
|
||||
OutputRaster|aspect|Aspect
|
||||
|
@ -3,7 +3,8 @@ Generates raster layers of slope, aspect, curvatures and partial derivatives fro
|
||||
Raster (r.*)
|
||||
ParameterRaster|elevation|Elevation|False
|
||||
ParameterSelection|format|Format for reporting the slope|degrees;percent
|
||||
ParameterSelection|precision|Type of output aspect and slope layer|CELL;FCELL;DCELL
|
||||
ParameterSelection|precision|Type of output aspect and slope layer|FCELL;CELL;DCELL
|
||||
ParameterBoolean|-a|Do not align the current region to the elevation layer|True
|
||||
ParameterNumber|zscale|Multiplicative factor to convert elevation units to meters|None|None|1.0
|
||||
ParameterNumber|min_slope|Minimum slope val. (in percent) for which aspect is computed|None|None|0.0
|
||||
OutputRaster|slope|Slope
|
||||
|
@ -2,7 +2,8 @@ r.slope.aspect
|
||||
r.slope - Generates raster maps of slope from a elevation raster map.
|
||||
Raster (r.*)
|
||||
ParameterRaster|elevation|Elevation|False
|
||||
ParameterSelection|precision|Data type|CELL;FCELL;DCELL
|
||||
ParameterSelection|precision|Data type|FCELL;CELL;DCELL
|
||||
ParameterBoolean|-a|Do not align the current region to the elevation layer|True
|
||||
ParameterNumber|zfactor|Multiplicative factor to convert elevation units to meters|None|None|1.0
|
||||
ParameterNumber|min_slope|Minimum slope val. (in percent) for which aspect is computed|None|None|0.0
|
||||
OutputRaster|slope|Slope
|
||||
|
Loading…
x
Reference in New Issue
Block a user