Skip to content

Commit 4510205

Browse files
authored
doc: remove GIS from several raster tools' documentation, pt2 (#5697)
Second half of the edits to convert the references to GRASS GIS to GRASS in the raster command directory. References were not edited. Links to wiki pages titled GRASS GIS were not edited.
1 parent b042ff0 commit 4510205

19 files changed

+28
-29
lines changed

raster/r.geomorphon/main.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -528,8 +528,7 @@ int main(int argc, char **argv)
528528
prof_int("format_version_major", 0);
529529
prof_int("format_version_minor", 9);
530530
prof_utc("timestamp", time(NULL));
531-
snprintf(buf, sizeof(buf),
532-
"r.geomorphon GRASS GIS %s [%s]",
531+
snprintf(buf, sizeof(buf), "r.geomorphon GRASS %s [%s]",
533532
GRASS_VERSION_STRING, GRASS_HEADERS_VERSION);
534533
prof_str("generator", buf);
535534

raster/r.in.gdal/r.in.gdal.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<h2>DESCRIPTION</h2>
22

3-
<em>r.in.gdal</em> allows a user to create a GRASS GIS raster map layer,
3+
<em>r.in.gdal</em> allows a user to create a GRASS raster map layer,
44
or imagery group, from any GDAL supported raster map format, with an optional
55
title. The imported file may also be used to create a new project
66
(previously called location).
@@ -411,7 +411,7 @@ <h2>SEE ALSO</h2>
411411
</em>
412412

413413
<p>
414-
GRASS GIS Wiki page: Import of <a href="https://grasswiki.osgeo.org/wiki/Global_datasets">Global datasets</a>
414+
GRASS Wiki page: Import of <a href="https://grasswiki.osgeo.org/wiki/Global_datasets">Global datasets</a>
415415

416416
<h2>AUTHOR</h2>
417417

raster/r.in.gdal/r.in.gdal.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## DESCRIPTION
22

3-
*r.in.gdal* allows a user to create a GRASS GIS raster map layer, or
3+
*r.in.gdal* allows a user to create a GRASS raster map layer, or
44
imagery group, from any GDAL supported raster map format, with an
55
optional title. The imported file may also be used to create a new
66
project (previously called location).
@@ -395,7 +395,7 @@ GDAL Pages: <https://gdal.org>
395395
[r.in.ascii](r.in.ascii.md), [r.in.bin](r.in.bin.md),
396396
[r.null](r.null.md), [t.register](t.register.md)*
397397

398-
GRASS GIS Wiki page: Import of [Global
398+
GRASS Wiki page: Import of [Global
399399
datasets](https://grasswiki.osgeo.org/wiki/Global_datasets)
400400

401401
## AUTHOR

raster/r.in.lidar/r.in.lidar.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ <h3>Binning</h3>
2828
The main difference between <em>r.in.lidar</em> and
2929
<em><a href="v.in.lidar.html">v.in.lidar</a></em> is that
3030
<em>r.in.lidar</em> creates a raster instead of just importing the
31-
points into GRASS GIS. However, <em>r.in.lidar</em> does not merely
31+
points into GRASS. However, <em>r.in.lidar</em> does not merely
3232
rasterizes the points from the point cloud. <em>r.in.lidar</em>
3333
uses binning to derive values for individual raster cells,
3434
so the value of a cell is typically an aggregation of values
@@ -42,7 +42,7 @@ <h3>Binning</h3>
4242
points which fall into one raster cell, i.e. bin. The number of points
4343
per cell (bin) indicates the density of points in the point cloud.
4444
The cell (bin) is always square or rectangular in case of
45-
<em>r.in.lidar</em> because the result is GRASS GIS 2D raster.
45+
<em>r.in.lidar</em> because the result is GRASS 2D raster.
4646
The result of binning where the number of point per cell is counted
4747
is sometimes called 2D (two dimensional) histogram because
4848
a histogram is used in univariate statistics (in one dimension)
@@ -155,7 +155,7 @@ <h3>Filtering</h3>
155155
</pre></div>
156156

157157
See <em><a href="g.region.html">g.region</a></em> for details about
158-
computation region handling in GRASS GIS.
158+
computation region handling in GRASS.
159159

160160
<p>
161161
The <b>zrange</b> parameter may be used for filtering the input data by

raster/r.in.lidar/r.in.lidar.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ with large datasets (see below for memory management notes).
2222

2323
The main difference between *r.in.lidar* and
2424
*[v.in.lidar](v.in.lidar.md)* is that *r.in.lidar* creates a raster
25-
instead of just importing the points into GRASS GIS. However,
25+
instead of just importing the points into GRASS. However,
2626
*r.in.lidar* does not merely rasterizes the points from the point cloud.
2727
*r.in.lidar* uses binning to derive values for individual raster cells,
2828
so the value of a cell is typically an aggregation of values of
@@ -35,7 +35,7 @@ In the basic case, binning is a method which counts the number of points
3535
which fall into one raster cell, i.e. bin. The number of points per cell
3636
(bin) indicates the density of points in the point cloud. The cell (bin)
3737
is always square or rectangular in case of *r.in.lidar* because the
38-
result is GRASS GIS 2D raster. The result of binning where the number of
38+
result is GRASS 2D raster. The result of binning where the number of
3939
point per cell is counted is sometimes called 2D (two dimensional)
4040
histogram because a histogram is used in univariate statistics (in one
4141
dimension) to count the number samples falling into a given bin.
@@ -142,7 +142,7 @@ g.region s=s-0.000001
142142
```
143143

144144
See *[g.region](g.region.md)* for details about computation region
145-
handling in GRASS GIS.
145+
handling in GRASS.
146146

147147
The **zrange** parameter may be used for filtering the input data by
148148
vertical extent. Example uses include filtering out extreme outliers and

raster/r.info/r.info.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ <h2>NOTES</h2>
2929

3030
<p>
3131
Some standards (ISO-C90) and compilers do not support the 'long long' type
32-
as a 64-bit type. In the case that GRASS GIS was built with such a compiler,
32+
as a 64-bit type. In the case that GRASS was built with such a compiler,
3333
an accuracy message may be displayed in the output of <em>r.info</em>
3434
after Total Cells.
3535

raster/r.info/r.info.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ On large maps, the total number of cells in the map may not be displayed
2323
with an accurate number. This is only cosmetic.
2424

2525
Some standards (ISO-C90) and compilers do not support the 'long long'
26-
type as a 64-bit type. In the case that GRASS GIS was built with such a
26+
type as a 64-bit type. In the case that GRASS was built with such a
2727
compiler, an accuracy message may be displayed in the output of *r.info*
2828
after Total Cells.
2929

raster/r.resamp.interp/r.resamp.interp.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ <h3>PERFORMANCE</h3>
4848
number of cells. See benchmark scripts in source code.</i>
4949
</div>
5050
<p>To reduce the memory requirements to minimum, set option <b>memory</b> to zero.
51-
To take advantage of the parallelization, GRASS GIS
51+
To take advantage of the parallelization, GRASS
5252
needs to compiled with OpenMP enabled.
5353

5454
<h2>EXAMPLE</h2>

raster/r.resamp.interp/r.resamp.interp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ By specifying the number of parallel processes with **nprocs** option,
4242
See benchmark scripts in source code.*
4343

4444
To reduce the memory requirements to minimum, set option **memory** to
45-
zero. To take advantage of the parallelization, GRASS GIS needs to
45+
zero. To take advantage of the parallelization, GRASS needs to
4646
compiled with OpenMP enabled.
4747

4848
## EXAMPLE

raster/r.rescale.eq/r.rescale.eq.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ <h2>DESCRIPTION</h2>
1010
number of categories from a raster map layer with a large
1111
range of category values (e.g., elevation).
1212
<em>Rescaled</em> map layers are appropriate for use in
13-
such GRASS GIS commands as
13+
such GRASS commands as
1414

1515
<em><a href="r.stats.html">r.stats</a></em>,
1616
<em><a href="r.report.html">r.report</a></em>, and

raster/r.rescale.eq/r.rescale.eq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ reflect the original category values that produced each category. This
88
command is useful for producing representations with a reduced number of
99
categories from a raster map layer with a large range of category values
1010
(e.g., elevation). *Rescaled* map layers are appropriate for use in such
11-
GRASS GIS commands as *[r.stats](r.stats.md)*,
11+
GRASS commands as *[r.stats](r.stats.md)*,
1212
*[r.report](r.report.md)*, and *[r.coin](r.coin.md)*.
1313

1414
## EXAMPLE

raster/r.rescale/r.rescale.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ <h2>DESCRIPTION</h2>
1010
number of categories from a raster map layer with a large
1111
range of category values (e.g., elevation).
1212
<em>Rescaled</em> map layers are appropriate for use in
13-
such GRASS GIS commands as
13+
such GRASS commands as
1414

1515
<em><a href="r.stats.html">r.stats</a></em>,
1616
<em><a href="r.report.html">r.report</a></em>, and

raster/r.rescale/r.rescale.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ are generated with category labels that reflect the original category
77
values that produced each category. This command is useful for producing
88
representations with a reduced number of categories from a raster map
99
layer with a large range of category values (e.g., elevation).
10-
*Rescaled* map layers are appropriate for use in such GRASS GIS commands
10+
*Rescaled* map layers are appropriate for use in such GRASS commands
1111
as *[r.stats](r.stats.md)*, *[r.report](r.report.md)*, and
1212
*[r.coin](r.coin.md)*.
1313

raster/r.slope.aspect/r.slope.aspect.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ <h2>DESCRIPTION</h2>
1313
elevation values, <em>not</em> rescaled or categorized data. If the elevation
1414
values are in other units than in the horizontal units,
1515
they must be converted to horizontal units using the parameter <b>zscale</b>.
16-
<em>In GRASS GIS 7, vertical units are not assumed to be meters any more.
16+
<em>In GRASS, vertical units are not assumed to be meters any more.
1717
For example, if both your vertical and horizontal units are feet,
1818
parameter <b>zscale</b> must not be used</em>.
1919

@@ -193,7 +193,7 @@ <h3>PERFORMANCE</h3>
193193
</div>
194194

195195
<p>To reduce the memory requirements to minimum, set option <b>memory</b> to zero.
196-
To take advantage of the parallelization, GRASS GIS
196+
To take advantage of the parallelization, GRASS
197197
needs to compiled with OpenMP enabled.
198198

199199
<h2>EXAMPLES</h2>

raster/r.slope.aspect/r.slope.aspect.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The **elevation** input raster map specified by the user must contain
1212
true elevation values, *not* rescaled or categorized data. If the
1313
elevation values are in other units than in the horizontal units, they
1414
must be converted to horizontal units using the parameter **zscale**.
15-
*In GRASS GIS 7, vertical units are not assumed to be meters any more.
15+
*In GRASS, vertical units are not assumed to be meters any more.
1616
For example, if both your vertical and horizontal units are feet,
1717
parameter **zscale** must not be used*.
1818

@@ -150,7 +150,7 @@ memory size for 5000x5000 raster. See benchmark scripts in source code.
150150
(Intel Core i9-10940X CPU @ 3.30GHz x 28)*
151151

152152
To reduce the memory requirements to minimum, set option **memory** to
153-
zero. To take advantage of the parallelization, GRASS GIS needs to
153+
zero. To take advantage of the parallelization, GRASS needs to
154154
compiled with OpenMP enabled.
155155

156156
## EXAMPLES

raster/r.solute.transport/example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
# This is an example script how groundwater flow and solute transport are
3-
# computed within GRASS GIS
3+
# computed within GRASS
44
import grass.script as gs
55

66
# Overwrite existing maps

raster/r.solute.transport/r.solute.transport.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ <h2>EXAMPLE</h2>
9393
<div class="code"><pre>
9494
#!/usr/bin/env python3
9595
# This is an example script how groundwater flow and solute transport are
96-
# computed within GRASS GIS
96+
# computed within GRASS
9797
import sys
9898
import os
9999
import grass.script as gs

raster/r.solute.transport/r.solute.transport.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ projection.
8686
```python
8787
#!/usr/bin/env python3
8888
# This is an example script how groundwater flow and solute transport are
89-
# computed within GRASS GIS
89+
# computed within GRASS
9090
import sys
9191
import os
9292
import grass.script as gs

raster/r.stats.zonal/graphics_for_description.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
"source": [
77
"# Graphics for description of r.stats.zonal\n",
88
"\n",
9-
"To be run in a GRASS GIS session, North Carolina sample dataset.\n",
9+
"To be run in a GRASS session, North Carolina sample dataset.\n",
1010
"\n",
11-
"Requires _d.explanation.plot_ (GRASS GIS addon), _pngquant_, _optipng_ and ImageMagic _mogrify_."
11+
"Requires _d.explanation.plot_ (GRASS addon), _pngquant_, _optipng_ and ImageMagic _mogrify_."
1212
]
1313
},
1414
{

0 commit comments

Comments
 (0)