Skip to content

Commit a773ffe

Browse files
author
Médéric RIBREUX
committedFeb 28, 2016
Add r.walk algorithms
1 parent 91ca474 commit a773ffe

File tree

4 files changed

+50
-15
lines changed

4 files changed

+50
-15
lines changed
 
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
r.walk
2+
r.walk.coords - Creates a raster map showing the anisotropic cumulative cost of moving between different geographic locations on an input raster map whose cell category values represent cost from a list of coordinates.
3+
Raster (r.*)
4+
ParameterRaster|elevation|Name of input elevation raster map|False
5+
ParameterRaster|friction|Name of input raster map containing friction costs|False
6+
ParameterString|start_coordinates|Coordinates of starting point(s) (a list of E,N)|None|False|False
7+
ParameterString|stop_coordinates|Coordinates of stopping point(s) (a list of E,N)|None|False|True
8+
ParameterString|walk_coeff|Coefficients for walking energy formula parameters a,b,c,d|0.72,6.0,1.9998,-1.9998|False|True
9+
ParameterNumber|lambda|Lambda coefficients for combining walking energy and friction cost|None|None|1.0|True
10+
ParameterNumber|slope_factor|Slope factor determines travel energy cost per height step|None|None|-0.2125|True
11+
ParameterNumber|max_cost|Maximum cumulative cost|None|None|0.0|True
12+
ParameterNumber|null_cost|Cost assigned to null cells. By default, null cells are excluded|None|None|None|True
13+
*ParameterNumber|memory|Maximum memory to be used in MB|0|None|300|True
14+
*ParameterBoolean|-k|Use the 'Knight's move'; slower, but more accurate|False
15+
*ParameterBoolean|-n|Keep null values in output raster layer|False
16+
OutputRaster|output|Cumulative cost
17+
OutputRaster|outdir|Movement Directions
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
r.walk
2+
r.walk.points - Creates a raster map showing the anisotropic cumulative cost of moving between different geographic locations on an input raster map whose cell category values represent cost from point vector layers.
3+
Raster (r.*)
4+
ParameterRaster|elevation|Name of input elevation raster map|False
5+
ParameterRaster|friction|Name of input raster map containing friction costs|False
6+
ParameterVector|start_points|Start points|0|False
7+
ParameterVector|stop_points|Stop points|0|True
8+
ParameterString|walk_coeff|Coefficients for walking energy formula parameters a,b,c,d|0.72,6.0,1.9998,-1.9998|False|True
9+
ParameterNumber|lambda|Lambda coefficients for combining walking energy and friction cost|None|None|1.0|True
10+
ParameterNumber|slope_factor|Slope factor determines travel energy cost per height step|None|None|-0.2125|True
11+
ParameterNumber|max_cost|Maximum cumulative cost|None|None|0.0|True
12+
ParameterNumber|null_cost|Cost assigned to null cells. By default, null cells are excluded|None|None|None|True
13+
*ParameterNumber|memory|Maximum memory to be used in MB|0|None|300|True
14+
*ParameterBoolean|-k|Use the 'Knight's move'; slower, but more accurate|False
15+
*ParameterBoolean|-n|Keep null values in output raster layer|False
16+
OutputRaster|output|Cumulative cost
17+
OutputRaster|outdir|Movement Directions
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
r.walk
2+
r.walk.rast - Creates a raster map showing the anisotropic cumulative cost of moving between different geographic locations on an input raster map whose cell category values represent cost from a raster.
3+
Raster (r.*)
4+
ParameterRaster|elevation|Name of input elevation raster map|False
5+
ParameterRaster|friction|Name of input raster map containing friction costs|False
6+
ParameterRaster|start_raster|Name of starting raster points map (all non-NULL cells are starting points)|False
7+
ParameterString|walk_coeff|Coefficients for walking energy formula parameters a,b,c,d|0.72,6.0,1.9998,-1.9998|False|True
8+
ParameterNumber|lambda|Lambda coefficients for combining walking energy and friction cost|None|None|1.0|True
9+
ParameterNumber|slope_factor|Slope factor determines travel energy cost per height step|None|None|-0.2125|True
10+
ParameterNumber|max_cost|Maximum cumulative cost|None|None|0.0|True
11+
ParameterNumber|null_cost|Cost assigned to null cells. By default, null cells are excluded|None|None|None|True
12+
*ParameterNumber|memory|Maximum memory to be used in MB|0|None|300|True
13+
*ParameterBoolean|-k|Use the 'Knight's move'; slower, but more accurate|False
14+
*ParameterBoolean|-n|Keep null values in output raster layer|False
15+
OutputRaster|output|Cumulative cost
16+
OutputRaster|outdir|Movement Directions

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

Lines changed: 0 additions & 15 deletions
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.