-
-
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.
Added several GRASS modules - thanks Maciej Sieczka. Icons still miss…
…ing, TBD git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@14591 c8812cc2-4d05-0410-92ff-de0c093fc19c
- Loading branch information
pcav
committed
Nov 13, 2010
1 parent
6cb7a0a
commit 9c829f6
Showing
8 changed files
with
103 additions
and
3 deletions.
There are no files selected for viewing
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
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
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,15 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE qgisgrassmodule SYSTEM "http://mrcc.com/qgisgrassmodule.dtd"> | ||
|
||
<qgisgrassmodule label="Generate raster of cumulative cost of moving between locations based on cost input raster and starting point(s) coordinates" module="r.cost"> | ||
<option key="input"/> | ||
<option key="coordinate"/> | ||
<option key="output"/> | ||
<option key="max_cost" hidden="no"/> | ||
<option key="stop_coordinate" hidden="no" advanced="yes"/> | ||
<!-- commented out until #3203 is fixed <option key="stop_points" hidden="no" advanced="yes"/> --> | ||
<option key="null_cost" hidden="no" advanced="yes"/> | ||
<flag key="k" hidden="no" /> | ||
<flag key="n" hidden="no" advanced="yes"/> | ||
<flag key="r" hidden="no" advanced="yes"/> | ||
</qgisgrassmodule> |
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,15 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE qgisgrassmodule SYSTEM "http://mrcc.com/qgisgrassmodule.dtd"> | ||
|
||
<qgisgrassmodule label="Generate raster of cumulative cost of moving between locations based on cost input raster and starting point(s) raster" module="r.cost"> | ||
<option key="input"/> | ||
<option key="start_rast"/> | ||
<option key="output"/> | ||
<option key="max_cost" hidden="no"/> | ||
<option key="stop_coordinate" hidden="no" advanced="yes"/> | ||
<!-- commented out until #3203 is fixed <option key="stop_points" hidden="no" advanced="yes"/> --> | ||
<option key="null_cost" hidden="no" advanced="yes"/> | ||
<flag key="k" hidden="no" /> | ||
<flag key="n" hidden="no" advanced="yes"/> | ||
<flag key="r" hidden="no" advanced="yes"/> | ||
</qgisgrassmodule> |
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,15 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE qgisgrassmodule SYSTEM "http://mrcc.com/qgisgrassmodule.dtd"> | ||
|
||
<qgisgrassmodule label="Generate raster of cumulative cost of moving between locations based on cost input raster and starting point(s) vector" module="r.cost"> | ||
<option key="input"/> | ||
<option key="start_points"/> | ||
<option key="output"/> | ||
<option key="max_cost" hidden="no"/> | ||
<option key="stop_coordinate" hidden="no" advanced="yes"/> | ||
<!-- commented out until #3203 is fixed <option key="stop_points" hidden="no" advanced="yes"/> --> | ||
<option key="null_cost" hidden="no" advanced="yes"/> | ||
<flag key="k" hidden="no" /> | ||
<flag key="n" hidden="no" advanced="yes"/> | ||
<flag key="r" hidden="no" advanced="yes"/> | ||
</qgisgrassmodule> |
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 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE qgisgrassmodule SYSTEM "http://mrcc.com/qgisgrassmodule.dtd"> | ||
|
||
<qgisgrassmodule label="Locate the closest points between objects in two raster maps" module="r.distance"> | ||
<option key="maps" option="map1"/> | ||
<option key="maps" option="map2"/> | ||
</qgisgrassmodule> | ||
|
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,18 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE qgisgrassmodule SYSTEM "http://mrcc.com/qgisgrassmodule.dtd"> | ||
|
||
<qgisgrassmodule label="Generate raster of cumulative cost of moving between x,y points, based on elevation and friction input rasters" module="r.walk"> | ||
<option key="elevation"/> | ||
<option key="friction"/> | ||
<option key="coordinate"/> | ||
<option key="output"/> | ||
<flag key="k" hidden="no"/> | ||
<option key="stop_coordinate" advanced="yes"/> | ||
<!-- commented out until #3203 is fixed <option key="stop_points" hidden="no" advanced="yes"/> --> | ||
<option key="max_cost" advanced="yes"/> | ||
<option key="lambda" advanced="yes"/> | ||
<option key="slope_factor" advanced="yes"/> | ||
<option key="null_cost" advanced="yes"/> | ||
<flag key="n" hidden="no" advanced="yes"/> | ||
<flag key="r" hidden="no" advanced="yes"/> | ||
</qgisgrassmodule> |
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,18 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE qgisgrassmodule SYSTEM "http://mrcc.com/qgisgrassmodule.dtd"> | ||
|
||
<qgisgrassmodule label="Generate raster of cumulative cost of moving between vector points, based on elevation and friction input rasters" module="r.walk"> | ||
<option key="elevation"/> | ||
<option key="friction"/> | ||
<option key="start_points"/> | ||
<option key="output"/> | ||
<option key="stop_coordinate" advanced="yes"/> | ||
<!-- commented out until #3203 is fixed <option key="stop_points" hidden="no" advanced="yes"/> --> | ||
<option key="max_cost" advanced="yes"/> | ||
<option key="lambda" advanced="yes"/> | ||
<option key="slope_factor" advanced="yes"/> | ||
<option key="null_cost" advanced="yes"/> | ||
<flag key="k" hidden="no"/> | ||
<flag key="n" hidden="no" advanced="yes"/> | ||
<flag key="r" hidden="no" advanced="yes"/> | ||
</qgisgrassmodule> |