-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Médéric RIBREUX
committed
Feb 28, 2016
1 parent
256b674
commit e87b1b2
Showing
3 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
python/plugins/processing/algs/grass7/description/r.cost.coords.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
r.cost | ||
r.cost.coords - Creates a raster layer of cumulative cost of moving across a raster layer whose cell values represent cost from a list of coordinates. | ||
Raster (r.*) | ||
ParameterRaster|input|Unit cost layer|False | ||
ParameterString|start_coordinates|Coordinates of starting point(s) (a list of E,N)|None|False|False | ||
ParameterString|stop_coordinates|Coordinates of stopping point(s) (a list of E,N)|None|False|True | ||
ParameterNumber|max_cost|Maximum cumulative cost|None|None|0.0|True | ||
ParameterNumber|null_cost|Cost assigned to null cells. By default, null cells are excluded|None|None|None|True | ||
*ParameterNumber|memory|Maximum memory to be used in MB|0|None|300|True | ||
*ParameterBoolean|-k|Use the 'Knight's move'; slower, but more accurate|False | ||
*ParameterBoolean|-n|Keep null values in output raster layer|False | ||
OutputRaster|output|Cumulative cost | ||
OutputRaster|nearest|Nearest start points | ||
OutputRaster|outdir|Movement Directions |
14 changes: 14 additions & 0 deletions
14
python/plugins/processing/algs/grass7/description/r.cost.points.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
r.cost | ||
r.cost.points - Creates a raster layer of cumulative cost of moving across a raster layer whose cell values represent cost from a vector point layer. | ||
Raster (r.*) | ||
ParameterRaster|input|Unit cost layer|False | ||
ParameterVector|start_points|Start points|0|False | ||
ParameterVector|stop_points|Stop points|0|True | ||
ParameterNumber|max_cost|Maximum cumulative cost|None|None|0.0|True | ||
ParameterNumber|null_cost|Cost assigned to null cells. By default, null cells are excluded|None|None|None|True | ||
*ParameterNumber|memory|Maximum memory to be used in MB|0|None|300|True | ||
*ParameterBoolean|-k|Use the 'Knight's move'; slower, but more accurate|False | ||
*ParameterBoolean|-n|Keep null values in output raster layer|False | ||
OutputRaster|output|Cumulative cost | ||
OutputRaster|nearest|Nearest start points | ||
OutputRaster|outdir|Movement Directions |
13 changes: 13 additions & 0 deletions
13
python/plugins/processing/algs/grass7/description/r.cost.rast.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
r.cost | ||
r.cost.rast - Creates a raster layer of cumulative cost of moving across a raster layer whose cell values represent cost from a raster of starting points. | ||
Raster (r.*) | ||
ParameterRaster|input|Unit cost layer|False | ||
ParameterRaster|start_raster|Name of starting raster points map (all non-NULL cells are starting points)|False | ||
ParameterNumber|max_cost|Maximum cumulative cost|None|None|0.0|True | ||
ParameterNumber|null_cost|Cost assigned to null cells. By default, null cells are excluded|None|None|None|True | ||
*ParameterNumber|memory|Maximum memory to be used in MB|0|None|300|True | ||
*ParameterBoolean|-k|Use the 'Knight's move'; slower, but more accurate|False | ||
*ParameterBoolean|-n|Keep null values in output raster layer|False | ||
OutputRaster|output|Cumulative cost | ||
OutputRaster|nearest|Nearest start points | ||
OutputRaster|outdir|Movement Directions |