Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

manual: fix broken HTML tags #4757

Merged
merged 1 commit into from
Nov 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading