diff --git a/Makefile b/Makefile index d77cb018e11..5d060f4dfb3 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ # PURPOSE: It provides the commands necessary to compile, install, # clean, and uninstall GRASS # See INSTALL.md file for usage. -# COPYRIGHT: (C) 2002-2022 by the GRASS Development Team +# COPYRIGHT: (C) 2002-2023 by the GRASS Development Team # # This program is free software under the GNU General Public # License (>=v2). Read the file COPYING that comes with GRASS diff --git a/REQUIREMENTS.html b/REQUIREMENTS.html index e22ac0837d1..f6b828e6b5b 100644 --- a/REQUIREMENTS.html +++ b/REQUIREMENTS.html @@ -234,7 +234,7 @@

Note:


-© GRASS Development Team 1997-2022 +© GRASS Development Team 1997-2023

Please report bugs here:
https://grass.osgeo.org/contribute/ diff --git a/configure.ac b/configure.ac index 7bbd76c57ca..5a84e7ba982 100755 --- a/configure.ac +++ b/configure.ac @@ -9,7 +9,7 @@ # PURPOSE: This configure runs all the tests to determine what components # are installed on the current system. It also defines certain # configuration variables for compilation and installation. -# COPYRIGHT: (C) 2000-2022 by the GRASS Development Team +# COPYRIGHT: (C) 2000-2023 by the GRASS Development Team # # This program is free software under the GNU General # Public License (>=v2). Read the file COPYING that diff --git a/grasslib.dox b/grasslib.dox index 691ef964002..360c6db799e 100644 --- a/grasslib.dox +++ b/grasslib.dox @@ -1,7 +1,7 @@ /*! \mainpage GRASS GIS 8 Programmer's Manual GRASS GIS (Geographic @@ -23,7 +23,7 @@ Team, an international team of programmers, GRASS module authors are cited within their module's source code and the contributed manual pages. -© 2000-2022 by the GRASS Development Team +© 2000-2023 by the GRASS Development Team This manual is published under GNU Free Documentation diff --git a/imagery/i.maxlik/main.c b/imagery/i.maxlik/main.c index 5b083b29e70..1ffdbf260f9 100644 --- a/imagery/i.maxlik/main.c +++ b/imagery/i.maxlik/main.c @@ -124,7 +124,8 @@ int main(int argc, char *argv[]) for (int col = 0; col < ncols; col++) { /* Predicted classes start at 1 but signature array is 0 based */ - class_cell[col] = S.sig[class_cell[col] - 1].oclass; + if (Rast_is_c_null_value(&class_cell[col]) == 0) + class_cell[col] = S.sig[class_cell[col] - 1].oclass; } } Rast_put_row(class_fd, class_cell, CELL_TYPE); diff --git a/imagery/i.maxlik/testsuite/test_i_maxlik.py b/imagery/i.maxlik/testsuite/test_i_maxlik.py index e6ad2aca2d7..1f6829e92b4 100644 --- a/imagery/i.maxlik/testsuite/test_i_maxlik.py +++ b/imagery/i.maxlik/testsuite/test_i_maxlik.py @@ -66,7 +66,7 @@ def setUpClass(cls): ) cls.runModule( "r.mapcalc", - expression=f"{cls.b2}=5.0+rand(-1.0,1.0)", + expression=f"{cls.b2}=if(row() == 3 && col() == 3, null(), 5.0+rand(-1.0,1.0))", flags="s", quiet=True, ) diff --git a/include/VERSION b/include/VERSION index 52ce4f3df01..6a10c6cbe15 100644 --- a/include/VERSION +++ b/include/VERSION @@ -1,4 +1,4 @@ 8 3 dev -2022 +2023 diff --git a/include/grass/gis.h b/include/grass/gis.h index ff3ade4d130..5175af7f4d0 100644 --- a/include/grass/gis.h +++ b/include/grass/gis.h @@ -6,7 +6,7 @@ * PURPOSE: This file contains definitions of variables and data types * for use with most, if not all, Grass programs. This file is * usually included in every Grass program. - * COPYRIGHT: (C) 2000-2022 by the GRASS Development Team + * COPYRIGHT: (C) 2000-2023 by the GRASS Development Team * * This program is free software under the GNU General Public * License (>=v2). Read the file COPYING that comes with GRASS diff --git a/lib/gis/env.c b/lib/gis/env.c index e440919c8fe..4669d1b0f91 100644 --- a/lib/gis/env.c +++ b/lib/gis/env.c @@ -3,7 +3,7 @@ \brief GIS library - environment routines - (C) 2001-2022 by the GRASS Development Team + (C) 2001-2023 by the GRASS Development Team This program is free software under the GNU General Public License (>=v2). Read the file COPYING that comes with GRASS for details. diff --git a/lib/gis/gislib_cmdline_parsing.dox b/lib/gis/gislib_cmdline_parsing.dox index 5696a42aeb1..d28e72107d9 100644 --- a/lib/gis/gislib_cmdline_parsing.dox +++ b/lib/gis/gislib_cmdline_parsing.dox @@ -4,7 +4,7 @@ diff --git a/lib/gis/parser_html.c b/lib/gis/parser_html.c index 9a9b02380f1..9cc07888264 100644 --- a/lib/gis/parser_html.c +++ b/lib/gis/parser_html.c @@ -3,7 +3,7 @@ \brief GIS Library - Argument parsing functions (HTML output) - (C) 2001-2022 by the GRASS Development Team + (C) 2001-2023 by the GRASS Development Team This program is free software under the GNU General Public License (>=v2). Read the file COPYING that comes with GRASS for details. diff --git a/lib/init/grass.py b/lib/init/grass.py index 3547107f2c6..3142895485e 100755 --- a/lib/init/grass.py +++ b/lib/init/grass.py @@ -18,7 +18,7 @@ # command line options for setting the GISDBASE, LOCATION, # and/or MAPSET. Finally it starts GRASS with the appropriate # user interface and cleans up after it is finished. -# COPYRIGHT: (C) 2000-2022 by the GRASS Development Team +# COPYRIGHT: (C) 2000-2023 by the GRASS Development Team # # This program is free software under the GNU General # Public License (>=v2). Read the file COPYING that diff --git a/lib/init/grass.sh b/lib/init/grass.sh index 6c03ff71d86..09dbf0c1d2f 100755 --- a/lib/init/grass.sh +++ b/lib/init/grass.sh @@ -13,7 +13,7 @@ # setting the GISDBASE, LOCATION, and/or MAPSET. # Finally it starts GRASS with the appropriate user # interface and cleans up after it is finished. -# COPYRIGHT: (C) 2000-2022 by the GRASS Development Team +# COPYRIGHT: (C) 2000-2023 by the GRASS Development Team # # This program is free software under the GNU General # Public License (>=v2). Read the file COPYING that diff --git a/man/build_graphical_index.py b/man/build_graphical_index.py index d4afd438d64..63d4c5f55e6 100755 --- a/man/build_graphical_index.py +++ b/man/build_graphical_index.py @@ -5,7 +5,7 @@ # MODULE: build_graphical_index # AUTHOR(S): Vaclav Petras # PURPOSE: Build graphical index -# COPYRIGHT: (C) 2015-2022 by Vaclav Petras and the GRASS Development Team +# COPYRIGHT: (C) 2015-2023 by Vaclav Petras and the GRASS Development Team # # This program is free software under the GNU General Public # License (>=v2). Read the file COPYING that comes with GRASS diff --git a/man/build_html.py b/man/build_html.py index c0c97766d97..f94f267d81c 100644 --- a/man/build_html.py +++ b/man/build_html.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # utilities for generating HTML indices -# (C) 2003-2022 Markus Neteler and the GRASS Development Team +# (C) 2003-2023 Markus Neteler and the GRASS Development Team # Authors: # Markus Neteler # Glynn Clements diff --git a/man/build_rest.py b/man/build_rest.py index 5357bcf16bb..643c294f105 100644 --- a/man/build_rest.py +++ b/man/build_rest.py @@ -9,7 +9,7 @@ """ # utilities for generating REST indices # utilities for generating HTML indices -# (C) 2003-2022 by Luca Delucchi and the GRASS Development Team +# (C) 2003-2023 by Luca Delucchi and the GRASS Development Team import os import string @@ -169,7 +169,7 @@ -------------- :doc:`Manual main page ` \| :doc:`Full Index ` - 2003-2022 `GRASS Development Team `_, GRASS GIS ${grass_version} Reference Manual + 2003-2023 `GRASS Development Team `_, GRASS GIS ${grass_version} Reference Manual """ ) diff --git a/man/sphinx/conf.py b/man/sphinx/conf.py index aa3a16db304..6205e863d5a 100644 --- a/man/sphinx/conf.py +++ b/man/sphinx/conf.py @@ -38,7 +38,7 @@ # General information about the project. project = "GRASS GIS 8.3 Documentation" -copyright = "2022, GRASS Development Team" +copyright = "2023, GRASS Development Team" # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -259,7 +259,7 @@ epub_title = "GRASS GIS 8.3 Documentation" epub_author = "GRASS Development Team" epub_publisher = "GRASS Development Team" -epub_copyright = "2022, GRASS Development Team" +epub_copyright = "2023, GRASS Development Team" # The language of the text. It defaults to the language option # or en if the language is not set. diff --git a/python/grass/docs/conf.py b/python/grass/docs/conf.py index c9f8b458589..02af34ffb90 100644 --- a/python/grass/docs/conf.py +++ b/python/grass/docs/conf.py @@ -124,7 +124,7 @@ # General information about the project. project = "Python library documentation" -copyright = "2022, GRASS Development Team" +copyright = "2023, GRASS Development Team" # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -359,7 +359,7 @@ epub_title = "PythonLib" epub_author = "GRASS Development Team" epub_publisher = "GRASS Development Team" -epub_copyright = "2022, GRASS Development Team" +epub_copyright = "2023, GRASS Development Team" # The basename for the epub file. It defaults to the project name. # epub_basename = u'wxGUI' diff --git a/python/grass/script/core.py b/python/grass/script/core.py index 6b64326e88c..672284713a3 100644 --- a/python/grass/script/core.py +++ b/python/grass/script/core.py @@ -8,7 +8,7 @@ from grass.script import core as grass grass.parser() -(C) 2008-2022 by the GRASS Development Team +(C) 2008-2023 by the GRASS Development Team This program is free software under the GNU General Public License (>=v2). Read the file COPYING that comes with GRASS for details. diff --git a/python/grass/script/setup.py b/python/grass/script/setup.py index 311e97fff26..fcf253f04f6 100644 --- a/python/grass/script/setup.py +++ b/python/grass/script/setup.py @@ -65,7 +65,7 @@ session.finish() -(C) 2010-2022 by the GRASS Development Team +(C) 2010-2023 by the GRASS Development Team This program is free software under the GNU General Public License (>=v2). Read the file COPYING that comes with GRASS for details. diff --git a/utils/mkhtml.py b/utils/mkhtml.py index 5a44f1ff9d8..a9df09389d6 100644 --- a/utils/mkhtml.py +++ b/utils/mkhtml.py @@ -7,7 +7,7 @@ # Glynn Clements # Martin Landa # PURPOSE: Create HTML manual page snippets -# COPYRIGHT: (C) 2007-2022 by Glynn Clements +# COPYRIGHT: (C) 2007-2023 by Glynn Clements # and the GRASS Development Team # # This program is free software under the GNU General