Skip to content

Commit

Permalink
manual: fix broken HTML tags (#4757)
Browse files Browse the repository at this point in the history
This PR fixes some broken HTML tags identified with a test run of the HTML validation with super-linter.

See logs showing the errors at:
https://github.com/echoix/grass/actions/runs/12001379426/job/33451802353?pr=303#step:4:8310
  • Loading branch information
neteler authored Nov 25, 2024
1 parent 370a492 commit 63fc743
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
12 changes: 6 additions & 6 deletions raster/r.texture/r.texture.html
Original file line number Diff line number Diff line change
Expand Up @@ -200,33 +200,33 @@ <h3>Performance</h3>
<br>
<i>Figure 1: Benchmark shows execution time for different
number of cells (1M, 2M, 4M, and 8M) and
the fixed size of window (3<span>&#215</span>3).
the fixed size of window (3<span>&#215;</span>3).
</div>
<div align="center" style="margin: 10px">
<img src="r_texture_mapsize_efficiency.png"
alt="efficiency benchmark for r.texture with different map sizes" border="0">
<br>
<i>Figure 2: Benchmark shows efficiency for different
numbers of cells (1M, 2M, 4M, and 8M) and
the fixed size of window (3<span>&#215</span>3).
the fixed size of window (3<span>&#215;</span>3).
</div>
<div align="center" style="margin: 10px">
<img src="r_texture_window_time.png"
alt="time benchmark for r.texture with different window sizes" border="0">
<br>
<i>Figure 3: Benchmark shows execution time for different
sizes of windows
(3<span>&#215</span>3, 9<span>&#215</span>9,
15<span>&#215</span>15, and 27<span>&#215</span>27)
(3<span>&#215;</span>3, 9<span>&#215;</span>9,
15<span>&#215;</span>15, and 27<span>&#215;</span>27)
and the fixed number of cells (1M).
</div>
<div align="center" style="margin: 10px">
<img src="r_texture_window_efficiency.png"
alt="efficiency benchmark for r.texture with different window sizes" border="0">
<br>
<i>Figure 4: Benchmark shows efficiency for different
sizes of windows (3<span>&#215</span>3, 9<span>&#215</span>9,
15<span>&#215</span>15, and 27<span>&#215</span>27)
sizes of windows (3<span>&#215;</span>3, 9<span>&#215;</span>9,
15<span>&#215;</span>15, and 27<span>&#215;</span>27)
and the fixed number of cells (1M).
</div>

Expand Down
2 changes: 1 addition & 1 deletion scripts/v.clip/v.clip.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ <h2>NOTES</h2>
and/or lines can be achieved
using <em><a href="v.overlay.html">v.overlay</a></em>. Clipping of
points can be performed
with <em><a href="v.select.html">v.select<a></em>.
with <em><a href="v.select.html">v.select</a></em>.

<h2>EXAMPLES</h2>

Expand Down
6 changes: 3 additions & 3 deletions temporal/t.rast.extract/t.rast.extract.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@ <h2>NOTES</h2>


<div class="code"><pre>
t.rast.extract input=tempmean_monthly where="start_time > '2010-01-05'" \
t.rast.extract input=tempmean_monthly where="start_time &gt; '2010-01-05'" \
output=selected_tempmean_monthly basename=new_tmean_month \
expression="if(tempmean_monthly < 0, null(), tempmean_monthly)"
expression="if(tempmean_monthly &lt; 0, null(), tempmean_monthly)"
</div>

<h2>EXAMPLE</h2>

<div class="code"><pre>
t.rast.extract input=tempmean_monthly output=tempmean_monthly_later_2012 \
where="start_time >= '2012-01-01'"
where="start_time &gt;= '2012-01-01'"

t.rast.list tempmean_monthly_later_2012
name|mapset|start_time|end_time
Expand Down
8 changes: 4 additions & 4 deletions vector/v.surf.rst/v.surf.rst.html
Original file line number Diff line number Diff line change
Expand Up @@ -305,14 +305,14 @@ <h3>Performance</h3>
<img src="vsurfrst_benchmark.png" alt="benchmark for v.surf.rst" border="0">
<br>
<i>Figure 1: Benchmark shows execution time for different
number of cells (1M, 2M, 4M, and 8M).
number of cells (1M, 2M, 4M, and 8M).</i>
</div>
<div align="center" style="margin: 10px">
<img src="vsurfrst_cv_benchmark.png" alt="benchmark for cross-validation of
v.surf.rst" border="0">
<br>
<i>Figure 2: Benchmark shows execution time for running cross-validation on
different number of cells (100k, 200k, 400k, and 800k).
different number of cells (100k, 200k, 400k, and 800k).</i>
</div>

<h2>EXAMPLE</h2>
Expand Down Expand Up @@ -355,10 +355,10 @@ <h3>Usage of the where parameter</h3>
v.db.univar -e elevrand column=value

# interpolation based on subset of points (only those over 1st quartile)
v.surf.rst input=elevrand zcolumn=value elevation=elev_partial npmin=100 where="value > 94.9"
v.surf.rst input=elevrand zcolumn=value elevation=elev_partial npmin=100 where="value &gt; 94.9"
r.colors map=elev_partial raster=elevation
d.rast elev_partial
d.vect elevrand where="value > 94.9"
d.vect elevrand where="value &gt; 94.9"
</pre></div>

<h2>REFERENCES</h2>
Expand Down

0 comments on commit 63fc743

Please sign in to comment.