diff --git a/raster/r.in.gdal/testsuite/test_r_in_gdal.py b/raster/r.in.gdal/testsuite/test_r_in_gdal.py
index 2b8bee0982a..2b0e33b76b7 100644
--- a/raster/r.in.gdal/testsuite/test_r_in_gdal.py
+++ b/raster/r.in.gdal/testsuite/test_r_in_gdal.py
@@ -180,7 +180,7 @@ def test_netCDF_3d_2(self):
input="data/elevation3d.nc",
num_digits=0,
offset=100,
- flags="o",
+ overwrite=True,
output="test_gdal_import_map",
)
@@ -220,7 +220,7 @@ def test_netCDF_3d_3(self):
input="data/elevation3d.nc",
num_digits=5,
offset=100,
- flags="o",
+ overwrite=True,
output="test_gdal_import_map",
)
@@ -259,7 +259,7 @@ def test_netCDF_3d_4(self):
"Import netCDF Format",
input="data/elevation3d.nc",
num_digits="3",
- flags="o",
+ overwrite=True,
band=2,
output="test_gdal_import_map",
)
@@ -290,7 +290,7 @@ def test_netCDF_3d_5(self):
input="data/elevation3d.nc",
num_digits=10,
offset=100,
- flags="o",
+ overwrite=True,
map_names_file="map_names_file.txt",
output="test_gdal_import_map",
)
diff --git a/raster/r.support/r.support.html b/raster/r.support/r.support.html
index 111e46f653d..13fdf2a26af 100644
--- a/raster/r.support/r.support.html
+++ b/raster/r.support/r.support.html
@@ -5,12 +5,13 @@
DESCRIPTION
history, semantic label elements and title is supported.
Category labels can also be copied from another raster map.
-Raster band management
+Raster semantic labels and band management
+
Raster semantic label concept is similar to dimension name in other GIS and
-remote sensing applications. Most common usage will be assigning a
-remote sensing platform sensor band ID to the raster, although any
-identifier is supported. Raster semantic label is suggested to work with
-imagery classification tools.
+remote sensing applications. Most common usage will be assigning a remote
+sensing platform sensor band identifier to the raster map metadata, although
+any identifier is supported (see i.band.library).
+Raster semantic label is suggested to work with imagery classification tools.
EXAMPLES
@@ -57,12 +58,14 @@ NOTES
SEE ALSO
+i.band.library,
r.category,
r.describe,
r.info,
r.null,
r.region,
r.report,
+r.semantic.label,
r.timestamp
diff --git a/scripts/i.band.library/i.band.library.html b/scripts/i.band.library/i.band.library.html
index b5d98d2607b..196f1319e3a 100644
--- a/scripts/i.band.library/i.band.library.html
+++ b/scripts/i.band.library/i.band.library.html
@@ -95,11 +95,11 @@ Band reference and semantic label relation
NOTES
-Semantic label concept is supported by temporal GRASS modules,
-see t.register,
-t.rast.list,
-t.info
-and t.rast.mapcalc
+Semantic label concept is supported by temporal GRASS modules, see
+t.register,
+t.rast.list,
+t.info
+and t.rast.mapcalc
modules for examples.
Image collections
diff --git a/scripts/r.semantic.label/r.semantic.label.html b/scripts/r.semantic.label/r.semantic.label.html
index 9ebcfce10a6..45ac7b9373e 100644
--- a/scripts/r.semantic.label/r.semantic.label.html
+++ b/scripts/r.semantic.label/r.semantic.label.html
@@ -25,10 +25,10 @@ NOTES
Semantic labels are supported by temporal GRASS modules. Name of
STRDS can be extended by band identifier in order to filter the result
by a semantic label. See
-t.register,
-t.rast.list,
-t.info
-and t.rast.mapcalc
+t.register,
+t.rast.list,
+t.info
+and t.rast.mapcalc
modules for examples.
EXAMPLES
diff --git a/scripts/v.db.reconnect.all/v.db.reconnect.all.py b/scripts/v.db.reconnect.all/v.db.reconnect.all.py
index 03a98f7bf0e..b42b8006673 100755
--- a/scripts/v.db.reconnect.all/v.db.reconnect.all.py
+++ b/scripts/v.db.reconnect.all/v.db.reconnect.all.py
@@ -298,7 +298,7 @@ def main():
try:
gs.run_command(
"v.db.connect",
- flags="o",
+ overwrite=True,
quiet=True,
map=vect,
layer=layer,
diff --git a/scripts/v.unpack/v.unpack.py b/scripts/v.unpack/v.unpack.py
index bd350676444..af430f98829 100644
--- a/scripts/v.unpack/v.unpack.py
+++ b/scripts/v.unpack/v.unpack.py
@@ -280,7 +280,7 @@ def main():
try:
grass.run_command(
"v.db.connect",
- flags="o",
+ overwrite=True,
quiet=True,
driver=dbconn["driver"],
database=todb,
diff --git a/vector/v.fill.holes/tests/conftest.py b/vector/v.fill.holes/tests/conftest.py
index f2413728e71..885699c0a4b 100644
--- a/vector/v.fill.holes/tests/conftest.py
+++ b/vector/v.fill.holes/tests/conftest.py
@@ -216,7 +216,7 @@ def import_data(path, areas_name, areas_with_space_in_between, env):
"v.db.connect",
map=areas_with_space_in_between,
table=areas_with_space_in_between,
- flags="o",
+ overwrite=True,
env=env,
)