Skip to content

Commit

Permalink
doc: Use lowercase for 2D raster mask
Browse files Browse the repository at this point in the history
Similarly to #4401, #4495, and #5000 this replaces usage of MASK by (raster) mask. This should be the last one or close to last one which does the cosmetics of MASK to mask switch.
  • Loading branch information
wenzeslaus committed Jan 29, 2025
1 parent 7f964eb commit 8d72901
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion imagery/i.smap/i.smap.html
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ <h2>SEE ALSO</h2>
<a href="i.group.html">i.group</a></em> for creating groups and subgroups,
<br>
<em><a href="r.mapcalc.html">r.mapcalc</a></em>
to copy classification result in order to cut out MASKed subareas,
to copy classification result in order to cut out masked subareas,
<br>
<em><a href="i.gensigset.html">i.gensigset</a></em>
to generate the signature file required by this program
Expand Down
4 changes: 2 additions & 2 deletions python/grass/grassdb/history.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,10 +257,10 @@ def get_initial_command_info(env_run):
# Execution timestamp in ISO 8601 format
exec_time = datetime.now().isoformat()

# 2D raster MASK presence
# 2D raster mask presence
mask2d_status = gs.parse_command("r.mask.status", format="json", env=env_run)

# 3D raster MASK presence
# 3D raster mask presence
env = gs.gisenv(env_run)
mapset_path = Path(env["GISDBASE"]) / env["LOCATION_NAME"] / env["MAPSET"]
mask3d_present = (mapset_path / "grid3" / "RASTER3D_MASK").exists()
Expand Down
2 changes: 1 addition & 1 deletion raster/r.surf.contour/r.surf.contour.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ <h3>Parameters:</h3>
the known category values in the input raster map layer.
</dl>

<p>An existing MASK raster map is respected for both reading <em>input</em>
<p>An existing mask raster map is respected for both reading <em>input</em>
and writing <em>output</em>.

<h2>NOTES</h2>
Expand Down
2 changes: 1 addition & 1 deletion scripts/r.fillnulls/r.fillnulls.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ <h2>NOTES</h2>
on <em><a href="v.surf.rst.html">v.surf.rst</a></em> regularized
splines with tension interpolation module which interpolates the
raster cell values for NULL data areas from the boundary values of the
NULL data area. An eventual raster MASK is respected during the NULL
NULL data area. An eventual raster mask is respected during the NULL
data area(s) filling. The interpolated values are patched into the
NULL data area(s) of the input map and saved into a new raster map.

Expand Down

0 comments on commit 8d72901

Please sign in to comment.