Skip to content

Commit

Permalink
r.viewshed.exposure manual: fix HTML (#730)
Browse files Browse the repository at this point in the history
- fix wrong tag: remove extra </li>
- HTML cosmetics
  • Loading branch information
neteler committed Apr 20, 2022
1 parent 9745a41 commit db0b912
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions src/raster/r.viewshed.exposure/r.viewshed.exposure.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ <h2>DESCRIPTION</h2>
source(s) using weighted (optional) parametrised (optional) cumulative viewshed.

<h3>The algorithm</h3>

The processing workflow of the module consists of five steps:
<ol>
<li>Random sampling of exposure source raster map with vector points,
Expand All @@ -22,6 +23,7 @@ <h3>The algorithm</h3>
</div>

<h4>1. Random sampling of exposure source raster map with vector points</h4>

To improve computational efficiency, the exposure source raster map is
randomly sampled with defined density (0-100&#37;; option <b>sample_density</b>).
In general, lower sampling densities lead to lower
Expand All @@ -33,15 +35,16 @@ <h4>1. Random sampling of exposure source raster map with vector points</h4>


<h4>2. Binary viewshed for each exposure source point</h4>

A binary viewshed for each exposure source point is calculated using
<a href="r.viewshed.html">r.viewshed</a> module. The height of exposure
source point above the surface is 0m. The height of observer point (exposure
receiver) above the surface is specified by option <b>observer_elevation</b>.
Viewshed radius (range of visual exposure) is specified by option
<b>max_distance</b>.


<h4>3. (optional) Parametrisation of the binary viewshed</h4>

The module supports different parametrization functions to better reflect
human visual perspective by accounting for the
variable contribution of the exposure source pixels to visual
Expand Down Expand Up @@ -103,6 +106,7 @@ <h3>Memory and parallel processing</h3>


<h2>EXAMPLES</h2>

Computation of visual exposure to major roads in South-West Wake county,
North Carolina. Input data are a terrain model and a raster map of major roads
from NC dataset. Viewshed parametrisation function is set to none (example 1)
Expand Down Expand Up @@ -137,7 +141,6 @@ <h2>EXAMPLES</h2>
r.mapcalc expression=exposure_roadsmajor_s_rescaled =
if(exposure_roadsmajor_s@user1>=0.2*3.1416,1,1/
(-1* log(exposure_roadsmajor_s@user1 /(2*3.1416))))

</pre></div>

<div align="center" style="margin: 10px">
Expand All @@ -159,6 +162,7 @@ <h2>EXAMPLES</h2>
</div>

<h2>TODO</h2>

<ul>
<li>Implement variable exposure source height.</li>
<li>Implement possibility to switch between absolute and relative values
Expand All @@ -174,7 +178,6 @@ <h2>REFERENCES</h2>
<i>Landscape and Urban Planning</i> 222, 104395.
<a href="https://doi.org/10.1016/j.landurbplan.2022.104395">
https://doi.org/10.1016/j.landurbplan.2022.104395 </a> </li>
</li>
<li>Chamberlain, B.C., Meitner, M.J., 2013.
A route-based visibility analysis for landscape management.
<i>Landscape and Urban Planning</i> 111, 13-24.
Expand All @@ -190,7 +193,7 @@ <h2>REFERENCES</h2>
<li>Fisher, P., 1994.
Probable and fuzzy models of the viewshed operation,
in: Worboys, M.F. (Ed.), <i>Innovations in GIS</i>.
Taylor & Francis, London, pp. 161-176.</li>
Taylor &amp; Francis, London, pp. 161-176.</li>
<li>Gr&ecirc;t-Regamey, A., Bishop, I.D., Bebi, P., 2007.
Predicting the scenic beauty value of mapped landscape changes
in a mountainous region through the use of GIS.
Expand All @@ -209,7 +212,7 @@ <h2>SEE ALSO</h2>

<em>
<a href="r.viewshed.html">r.viewshed</a>,
<a href="r.viewshed.cva.html">r.viewshed.cva</a>
<a href="r.viewshed.cva.html">r.viewshed.cva</a>,
<a href="r.survey.html">r.survey</a>
</em>

Expand Down

0 comments on commit db0b912

Please sign in to comment.