-
-
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.
Merge pull request #1472 from gioman/r_cost_raster
[processing] add a r.cost submodule that uses a raster input as starting point(s) + fix r.drain and add a submodule for r.drain that does not need input point vectors
- Loading branch information
Showing
3 changed files
with
18 additions
and
1 deletion.
There are no files selected for viewing
8 changes: 8 additions & 0 deletions
8
python/plugins/processing/algs/grass/description/r.cost.full.raster.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,8 @@ | ||
r.cost | ||
r.cost.full.raster - Creates a raster layer of cumulative cost of moving across a raster layer whose cell values represent cost. | ||
Raster (r.*) | ||
ParameterRaster|input|Unit cost layer|False | ||
ParameterRaster|start_rast|Name of starting raster points map|0|False | ||
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 |
9 changes: 9 additions & 0 deletions
9
python/plugins/processing/algs/grass/description/r.drain.coordinate.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,9 @@ | ||
r.drain | ||
r.drain.coordinate - Traces a flow through an elevation model on a raster map. | ||
Raster (r.*) | ||
ParameterRaster|input|Elevation|False | ||
ParameterString|coordinate|Map coordinates of starting point(s) (E,N)|0,0 | ||
ParameterBoolean|-c|Copy input cell values on output|False | ||
ParameterBoolean|-a|Accumulate input values along the path|False | ||
ParameterBoolean|-n|Count cell numbers along the path|False | ||
OutputRaster|output|Result |
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