Skip to content

Commit 9b35a98

Browse files
committedMar 10, 2016
Merge pull request #2890 from NaturalGIS/processing_better_grass7_r_cost
[processing] better GRASS 7 r.cost algorithms
2 parents 52621b9 + c4c67b0 commit 9b35a98

File tree

6 files changed

+32
-17
lines changed

6 files changed

+32
-17
lines changed
 

‎1

Whitespace-only changes.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
r.cost
2+
r.cost.coordinates - Creates a raster layer of cumulative cost of moving across a raster layer whose cell values represent cost.
3+
Raster (r.*)
4+
ParameterRaster|input|Unit cost layer|False
5+
ParameterString|start_coordinates|Coordinates of starting point(s) (E,N)|0,0
6+
ParameterString|stop_coordinates|Coordinates of stopping point(s) (E,N)|
7+
ParameterBoolean|-k|Use the 'Knight's move'; slower, but more accurate|False
8+
ParameterBoolean|-n|Keep null values in output raster layer|True
9+
ParameterNumber|max_cost|Maximum cumulative cost|0|None|0
10+
ParameterNumber|null_cost|Cost assigned to null cells. By default, null cells are excluded|None|None|0
11+
ParameterNumber|memory|Maximum memory to be used in MB|0|None|300
12+
OutputRaster|output|Cumulative cost

‎python/plugins/processing/algs/grass7/description/r.cost.full.txt

Lines changed: 0 additions & 8 deletions
This file was deleted.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
r.cost
2+
r.cost.points - Creates a raster layer of cumulative cost of moving across a raster layer whose cell values represent cost.
3+
Raster (r.*)
4+
ParameterRaster|input|Unit cost layer|False
5+
ParameterVector|start_points|Start points|0|False
6+
ParameterVector|stop_points|Stop points|0|True
7+
ParameterBoolean|-k|Use the 'Knight's move'; slower, but more accurate|False
8+
ParameterBoolean|-n|Keep null values in output raster layer|True
9+
OutputRaster|output|Cumulative cost
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
r.cost
2+
r.cost.raster - Creates a raster layer of cumulative cost of moving across a raster layer whose cell values represent cost.
3+
Raster (r.*)
4+
ParameterRaster|input|Unit cost layer|False
5+
ParameterRaster|start_raster|Name of starting raster points map|False
6+
ParameterBoolean|-k|Use the 'Knight's move'; slower, but more accurate|False
7+
ParameterBoolean|-n|Keep null values in output raster layer|True
8+
ParameterNumber|max_cost|Maximum cumulative cost|0|None|0
9+
ParameterNumber|null_cost|Cost assigned to null cells. By default, null cells are excluded|None|None|0
10+
ParameterNumber|memory|Maximum memory to be used in MB|0|None|300
11+
OutputRaster|output|Cumulative cost

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

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

0 commit comments

Comments
 (0)
Please sign in to comment.