This repository has been archived by the owner on Jan 20, 2025. It is now read-only.
generated from mundialis/v.example
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix_few_typos
- Loading branch information
Showing
10 changed files
with
893 additions
and
47 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,28 @@ | ||
<h2>DESCRIPTION</h2> | ||
<em>r.slopeunits.clean</em> cleans slope units layer, e.g. results of <em>r.slopeunits.create</em>. | ||
|
||
<h2>NOTES</h2> | ||
|
||
<h2>EXAMPLE</h2> | ||
|
||
<div class="code"><pre> | ||
r.slopeunits.clean \ | ||
demmap=dem_italia_isolegrandi@su_test \ | ||
plainsmap=flat \ | ||
slumap=su_tmp \ | ||
slumapclean=su_tmp_cl \ | ||
cleansize=25000 \ | ||
-m | ||
</pre></div> | ||
|
||
<h2>SEE ALSO</h2> | ||
<em> | ||
<a href="r.slopeunits.create.html">r.slopeunits.create</a>, | ||
<a href="r.slopeunits.metrics.html">r.slopeunits.metrics</a>, | ||
<a href="r.slopeunits.optimize.html">r.slopeunits.optimize</a> | ||
</em> | ||
|
||
<h2>AUTHORS</h2> | ||
Main authors: Ivan Marchesini, Massimiliano Alvioli, CNR-IRPI | ||
<br> | ||
Markus Metz (refactoring, translation of "clean_method_3" to python), Carmen Tawalika (creation of extra addon), <a href="https://www.mundialis.de/">mundialis</a> |
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 |
---|---|---|
@@ -1,9 +1,30 @@ | ||
<h2>DESCRIPTION</h2> | ||
<em>r.slopeunits.create</em> creates a raster layer of slope units. Optionally, a vector map can be created. | ||
|
||
<h2>NOTES</h2> | ||
|
||
<h2>EXAMPLE</h2> | ||
|
||
<div class="code"><pre> | ||
r.slopeunits.create \ | ||
demmap=dem_italia_isolegrandi@su_test \ | ||
plainsmap=flat \ | ||
slumap=su_tmp \ | ||
thresh=250000 \ | ||
areamin=200000 \ | ||
cvmin=0.25 \ | ||
rf=2 \ | ||
maxiteration=50 | ||
</pre></div> | ||
|
||
<h2>SEE ALSO</h2> | ||
<em> | ||
<a href="r.slopeunits.clean.html">r.slopeunits.clean</a>, | ||
<a href="r.slopeunits.metrics.html">r.slopeunits.metrics</a>, | ||
<a href="r.slopeunits.optimize.html">r.slopeunits.optimize</a> | ||
</em> | ||
|
||
<h2>AUTHORS</h2> | ||
Main authors: Ivan Marchesini, Massimiliano Alvioli, CNR-IRPI | ||
<br> | ||
Markus Metz (refactoring), <a href="https://www.mundialis.de/">mundialis</a> |
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 |
---|---|---|
@@ -1,9 +1,39 @@ | ||
<h2>DESCRIPTION</h2> | ||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> | ||
<html> | ||
<head> | ||
<title>r.slopeunits toolset - GRASS GIS manual</title> | ||
<meta name="Author" content="Ivan Marchesini, Massimiliano Alvioli, mundialis team"> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | ||
<meta http-equiv="content-language" content="en-us"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="stylesheet" href="grassdocs.css" type="text/css"> | ||
</head> | ||
<body bgcolor="white"> | ||
<div id="container"> | ||
|
||
<a href="https://grass.osgeo.org/grass-stable/manuals/index.html"><img src="grass_logo.png" alt="GRASS logo"></a> | ||
<hr class="header"> | ||
|
||
<h2>NAME</h2> | ||
|
||
<h2>NOTES</h2> | ||
<em>r.slopeunits</em> is a GRASS GIS addon toolset that creates, cleans | ||
and calculate metrics for slope units. Additionally, optimal input values can | ||
be determined. | ||
|
||
<h2>EXAMPLE</h2> | ||
<h2>KEYWORDS</h2> | ||
|
||
<h2>DESCRIPTION</h2> | ||
The <em>r.slopeunits</em> toolset consists of currently four modules: | ||
|
||
<h2>SEE ALSO</h2> | ||
<ul> | ||
<li><a href="r.slopeunits.create.html">r.slopeunits.create</a>: Creates a raster layer of slope units. Optionally, a vector map can be created.</li> | ||
<li><a href="r.slopeunits.clean.html">r.slopeunits.clean</a>: Cleans slope units layer, e.g. results of r.slopeunits.create.</li> | ||
<li><a href="r.slopeunits.metrics.html">r.slopeunits.metrics</a>: Creates metrics for slope units.</li> | ||
<li><a href="r.slopeunits.optimize.html">r.slopeunits.optimize</a>: Determines optimal input values for slope units.</li> | ||
</ul> | ||
|
||
<h2>AUTHORS</h2> | ||
Main authors: Ivan Marchesini, Massimiliano Alvioli, CNR-IRPI | ||
<br> | ||
Markus Metz (translation to python, refactoring), Carmen Tawalika (translation to python, refactoring), | ||
<a href="https://www.mundialis.de/">mundialis</a> |
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 |
---|---|---|
@@ -1,9 +1,31 @@ | ||
<h2>DESCRIPTION</h2> | ||
<em>r.slopeunits.metrics</em> creates metrics for slope units. Returns | ||
output "areamin, cvmin, v_fin and i_fin" to stdout, optionally writes to a file. | ||
|
||
<h2>NOTES</h2> | ||
|
||
<h2>EXAMPLE</h2> | ||
|
||
<div class="code"><pre> | ||
r.slopeunits.metrics \ | ||
basin=basin_chk \ | ||
demmap=dem_italia_isolegrandi@su_test \ | ||
slumapclean=su_tmp_cl \ | ||
cleansize=25000 \ | ||
areamin=50000.0 \ | ||
cvmin=0.05 \ | ||
resolution=625 \ | ||
outfile=objf_1.dat | ||
</pre></div> | ||
|
||
<h2>SEE ALSO</h2> | ||
<em> | ||
<a href="r.slopeunits.create.html">r.slopeunits.create</a>, | ||
<a href="r.slopeunits.clean.html">r.slopeunits.clean</a>, | ||
<a href="r.slopeunits.optimize.html">r.slopeunits.optimize</a> | ||
</em> | ||
|
||
<h2>AUTHORS</h2> | ||
Main authors: Ivan Marchesini, Massimiliano Alvioli, CNR-IRPI | ||
<br> | ||
Carmen Tawalika (translation to python), <a href="https://www.mundialis.de/">mundialis</a> |
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
Oops, something went wrong.