diff --git a/CHANGES.md b/CHANGES.md index 8f68cb1a..e5f0f8d3 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,8 @@ +## Version 4.0.0 (2026/05/30) + +* **Changed** + * Moved Nondimensionalization to PyLith (renamed Scales). + ## Version 3.1.3 (2024/10/31) * **Changed** diff --git a/LICENSE.md b/LICENSE.md index ac5fb6b4..d6b7aa5a 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,4 +1,4 @@ -Copyright (c) 2010-2025 University of California, Davis +Copyright (c) 2010-2026 University of California, Davis Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/Makefile.am b/Makefile.am index 99a78dcb..84205f5d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/applications/gensimpledb.py b/applications/gensimpledb.py index de072f35..4d48786d 100644 --- a/applications/gensimpledb.py +++ b/applications/gensimpledb.py @@ -4,7 +4,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/configure.ac b/configure.ac index 6a3c034d..4fa5b038 100644 --- a/configure.ac +++ b/configure.ac @@ -2,14 +2,14 @@ dnl ============================================================================ dnl This code is part of SpatialData, developed through the Computational Infrastructure dnl for Geodynamics (https://github.com/geodynamics/spatialdata). dnl -dnl Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +dnl Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. dnl All rights reserved. dnl dnl See https://mit-license.org/ and LICENSE.md and for license information. dnl ================================================================================================ AC_PREREQ(2.59) -AC_INIT([spatialdata], [3.1.3], [baagaard@usgs.gov]) +AC_INIT([spatialdata], [4.0.0], [baagaard@usgs.gov]) AC_CONFIG_HEADER([portinfo]) AC_CONFIG_AUX_DIR([./aux-config]) AC_CONFIG_MACRO_DIR([m4]) @@ -62,6 +62,8 @@ AC_PROG_INSTALL dnl Require C++-14 (Catch2) AX_CXX_COMPILE_STDCXX(14) +CIT_LIBTOOL_CONDA_FIX_CRT_OBJECTS + dnl ---------------------------------------------------------------------- dnl PROJ CIT_PROJ6_HEADER diff --git a/docs/Makefile.am b/docs/Makefile.am index 375fe53d..b1c4ee9a 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/docs/conf.py b/docs/conf.py index 6df5b39a..5db1dce0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -17,12 +17,12 @@ # -- Project information ----------------------------------------------------- -project = 'SpatialData' -copyright = '2010-2025, University of California, Davis' -author = 'Brad T. Aagaard' +project = "SpatialData" +copyright = "2010-2026, University of California, Davis" +author = "Brad T. Aagaard" # The full version, including alpha/beta/rc tags -release = '3.1.3' +release = "4.0.0" # -- General configuration --------------------------------------------------- @@ -46,7 +46,7 @@ ] # Add any paths that contain templates here, relative to this directory. -templates_path = ['_templates'] +templates_path = ["_templates"] # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. @@ -61,7 +61,7 @@ # a list of builtin themes. # html_logo = "_static/images/cig_short_spatialdata.png" -html_theme = 'pydata_sphinx_theme' +html_theme = "pydata_sphinx_theme" html_context = { "default_mode": "light", "github_user": "geodynamics", @@ -94,8 +94,8 @@ # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] +html_static_path = ["_static"] html_css_files = [ - 'css/custom.css', + "css/custom.css", ] html_last_updated_fmt = "" diff --git a/libsrc/Makefile.am b/libsrc/Makefile.am index e0a94704..95709558 100644 --- a/libsrc/Makefile.am +++ b/libsrc/Makefile.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/Makefile.am b/libsrc/spatialdata/Makefile.am index ef659956..ad41625b 100644 --- a/libsrc/spatialdata/Makefile.am +++ b/libsrc/spatialdata/Makefile.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/geocoords/CSCart.cc b/libsrc/spatialdata/geocoords/CSCart.cc index 33fd8c66..14a272a6 100644 --- a/libsrc/spatialdata/geocoords/CSCart.cc +++ b/libsrc/spatialdata/geocoords/CSCart.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/geocoords/CSCart.hh b/libsrc/spatialdata/geocoords/CSCart.hh index 36954c13..a8de7996 100644 --- a/libsrc/spatialdata/geocoords/CSCart.hh +++ b/libsrc/spatialdata/geocoords/CSCart.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/geocoords/CSGeo.cc b/libsrc/spatialdata/geocoords/CSGeo.cc index 96e429e0..bb8647af 100644 --- a/libsrc/spatialdata/geocoords/CSGeo.cc +++ b/libsrc/spatialdata/geocoords/CSGeo.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/geocoords/CSGeo.hh b/libsrc/spatialdata/geocoords/CSGeo.hh index 363e10a7..7ebdae0c 100644 --- a/libsrc/spatialdata/geocoords/CSGeo.hh +++ b/libsrc/spatialdata/geocoords/CSGeo.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/geocoords/CSGeoLocal.cc b/libsrc/spatialdata/geocoords/CSGeoLocal.cc index fa8be116..0a81a559 100644 --- a/libsrc/spatialdata/geocoords/CSGeoLocal.cc +++ b/libsrc/spatialdata/geocoords/CSGeoLocal.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/geocoords/CSGeoLocal.hh b/libsrc/spatialdata/geocoords/CSGeoLocal.hh index 683a82a1..8581ac48 100644 --- a/libsrc/spatialdata/geocoords/CSGeoLocal.hh +++ b/libsrc/spatialdata/geocoords/CSGeoLocal.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/geocoords/CSPicklerAscii.cc b/libsrc/spatialdata/geocoords/CSPicklerAscii.cc index 47f29d6c..c986738b 100644 --- a/libsrc/spatialdata/geocoords/CSPicklerAscii.cc +++ b/libsrc/spatialdata/geocoords/CSPicklerAscii.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/geocoords/CSPicklerAscii.hh b/libsrc/spatialdata/geocoords/CSPicklerAscii.hh index fd9d3bd9..71c5cc93 100644 --- a/libsrc/spatialdata/geocoords/CSPicklerAscii.hh +++ b/libsrc/spatialdata/geocoords/CSPicklerAscii.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/geocoords/Converter.cc b/libsrc/spatialdata/geocoords/Converter.cc index f8b119ca..bb464eb2 100644 --- a/libsrc/spatialdata/geocoords/Converter.cc +++ b/libsrc/spatialdata/geocoords/Converter.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/geocoords/Converter.hh b/libsrc/spatialdata/geocoords/Converter.hh index e5cd9ce3..ea256c19 100644 --- a/libsrc/spatialdata/geocoords/Converter.hh +++ b/libsrc/spatialdata/geocoords/Converter.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/geocoords/CoordSys.cc b/libsrc/spatialdata/geocoords/CoordSys.cc index 4679e7e7..a8592554 100644 --- a/libsrc/spatialdata/geocoords/CoordSys.cc +++ b/libsrc/spatialdata/geocoords/CoordSys.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/geocoords/CoordSys.hh b/libsrc/spatialdata/geocoords/CoordSys.hh index 44abda5c..b97c6906 100644 --- a/libsrc/spatialdata/geocoords/CoordSys.hh +++ b/libsrc/spatialdata/geocoords/CoordSys.hh @@ -1,6 +1,6 @@ // ================================================================================================= // This code is part of SpatialData, developed through the Computational Infrastructure -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/geocoords/Makefile.am b/libsrc/spatialdata/geocoords/Makefile.am index a122735f..6fc671f3 100644 --- a/libsrc/spatialdata/geocoords/Makefile.am +++ b/libsrc/spatialdata/geocoords/Makefile.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/geocoords/geocoordsfwd.hh b/libsrc/spatialdata/geocoords/geocoordsfwd.hh index 3fca45f8..b5f77f3f 100644 --- a/libsrc/spatialdata/geocoords/geocoordsfwd.hh +++ b/libsrc/spatialdata/geocoords/geocoordsfwd.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/muparser/Makefile.am b/libsrc/spatialdata/muparser/Makefile.am index 5c6d2f1f..d9c520e1 100644 --- a/libsrc/spatialdata/muparser/Makefile.am +++ b/libsrc/spatialdata/muparser/Makefile.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/muparser/muparserfwd.hh b/libsrc/spatialdata/muparser/muparserfwd.hh index ab1ad90e..d5808fac 100644 --- a/libsrc/spatialdata/muparser/muparserfwd.hh +++ b/libsrc/spatialdata/muparser/muparserfwd.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/AnalyticDB.cc b/libsrc/spatialdata/spatialdb/AnalyticDB.cc index 21c58971..8338c0d7 100644 --- a/libsrc/spatialdata/spatialdb/AnalyticDB.cc +++ b/libsrc/spatialdata/spatialdb/AnalyticDB.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/AnalyticDB.hh b/libsrc/spatialdata/spatialdb/AnalyticDB.hh index 56788677..3892a08c 100644 --- a/libsrc/spatialdata/spatialdb/AnalyticDB.hh +++ b/libsrc/spatialdata/spatialdb/AnalyticDB.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/AnalyticDB.icc b/libsrc/spatialdata/spatialdb/AnalyticDB.icc index 32d654b3..959ffe97 100644 --- a/libsrc/spatialdata/spatialdb/AnalyticDB.icc +++ b/libsrc/spatialdata/spatialdb/AnalyticDB.icc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/CompositeDB.cc b/libsrc/spatialdata/spatialdb/CompositeDB.cc index bc4861b2..09aba92b 100644 --- a/libsrc/spatialdata/spatialdb/CompositeDB.cc +++ b/libsrc/spatialdata/spatialdb/CompositeDB.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/CompositeDB.hh b/libsrc/spatialdata/spatialdb/CompositeDB.hh index 3b4852f5..93964803 100644 --- a/libsrc/spatialdata/spatialdb/CompositeDB.hh +++ b/libsrc/spatialdata/spatialdb/CompositeDB.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/Exception.hh b/libsrc/spatialdata/spatialdb/Exception.hh index 5d35a479..68be1268 100644 --- a/libsrc/spatialdata/spatialdb/Exception.hh +++ b/libsrc/spatialdata/spatialdb/Exception.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/Exception.icc b/libsrc/spatialdata/spatialdb/Exception.icc index b50e6c26..f643a204 100644 --- a/libsrc/spatialdata/spatialdb/Exception.icc +++ b/libsrc/spatialdata/spatialdb/Exception.icc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/GocadVoxet.cc b/libsrc/spatialdata/spatialdb/GocadVoxet.cc index d40c9ff7..db40eb12 100644 --- a/libsrc/spatialdata/spatialdb/GocadVoxet.cc +++ b/libsrc/spatialdata/spatialdb/GocadVoxet.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/GocadVoxet.hh b/libsrc/spatialdata/spatialdb/GocadVoxet.hh index 8f06efd3..1cad7a5d 100644 --- a/libsrc/spatialdata/spatialdb/GocadVoxet.hh +++ b/libsrc/spatialdata/spatialdb/GocadVoxet.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/GravityField.cc b/libsrc/spatialdata/spatialdb/GravityField.cc index fa12b5ed..19a3659b 100644 --- a/libsrc/spatialdata/spatialdb/GravityField.cc +++ b/libsrc/spatialdata/spatialdb/GravityField.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/GravityField.hh b/libsrc/spatialdata/spatialdb/GravityField.hh index 6aa0cba8..71908fc5 100644 --- a/libsrc/spatialdata/spatialdb/GravityField.hh +++ b/libsrc/spatialdata/spatialdb/GravityField.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/Makefile.am b/libsrc/spatialdata/spatialdb/Makefile.am index fe757418..947da991 100644 --- a/libsrc/spatialdata/spatialdb/Makefile.am +++ b/libsrc/spatialdata/spatialdb/Makefile.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/SCECCVMH.cc b/libsrc/spatialdata/spatialdb/SCECCVMH.cc index 3a195421..acf8f200 100644 --- a/libsrc/spatialdata/spatialdb/SCECCVMH.cc +++ b/libsrc/spatialdata/spatialdb/SCECCVMH.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/SCECCVMH.hh b/libsrc/spatialdata/spatialdb/SCECCVMH.hh index 0eaf8eaf..387368b4 100644 --- a/libsrc/spatialdata/spatialdb/SCECCVMH.hh +++ b/libsrc/spatialdata/spatialdb/SCECCVMH.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/SCECCVMH.icc b/libsrc/spatialdata/spatialdb/SCECCVMH.icc index efbf7d9d..780af8e3 100644 --- a/libsrc/spatialdata/spatialdb/SCECCVMH.icc +++ b/libsrc/spatialdata/spatialdb/SCECCVMH.icc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/SimpleDB.cc b/libsrc/spatialdata/spatialdb/SimpleDB.cc index 77cde85e..61b0d6fa 100644 --- a/libsrc/spatialdata/spatialdb/SimpleDB.cc +++ b/libsrc/spatialdata/spatialdb/SimpleDB.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/SimpleDB.hh b/libsrc/spatialdata/spatialdb/SimpleDB.hh index 370981dd..3a4d87c0 100644 --- a/libsrc/spatialdata/spatialdb/SimpleDB.hh +++ b/libsrc/spatialdata/spatialdb/SimpleDB.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/SimpleDBData.cc b/libsrc/spatialdata/spatialdb/SimpleDBData.cc index c68629aa..d410809a 100644 --- a/libsrc/spatialdata/spatialdb/SimpleDBData.cc +++ b/libsrc/spatialdata/spatialdb/SimpleDBData.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/SimpleDBData.hh b/libsrc/spatialdata/spatialdb/SimpleDBData.hh index 60051815..29c22bdd 100644 --- a/libsrc/spatialdata/spatialdb/SimpleDBData.hh +++ b/libsrc/spatialdata/spatialdb/SimpleDBData.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/SimpleDBData.icc b/libsrc/spatialdata/spatialdb/SimpleDBData.icc index bf593bef..4fb396c2 100644 --- a/libsrc/spatialdata/spatialdb/SimpleDBData.icc +++ b/libsrc/spatialdata/spatialdb/SimpleDBData.icc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/SimpleDBQuery.cc b/libsrc/spatialdata/spatialdb/SimpleDBQuery.cc index e094aa7a..8b830742 100644 --- a/libsrc/spatialdata/spatialdb/SimpleDBQuery.cc +++ b/libsrc/spatialdata/spatialdb/SimpleDBQuery.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/SimpleDBQuery.hh b/libsrc/spatialdata/spatialdb/SimpleDBQuery.hh index 1cfabdcc..5b6c89a7 100644 --- a/libsrc/spatialdata/spatialdb/SimpleDBQuery.hh +++ b/libsrc/spatialdata/spatialdb/SimpleDBQuery.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/SimpleGridAscii.cc b/libsrc/spatialdata/spatialdb/SimpleGridAscii.cc index f7fa50b2..4506f3ef 100644 --- a/libsrc/spatialdata/spatialdb/SimpleGridAscii.cc +++ b/libsrc/spatialdata/spatialdb/SimpleGridAscii.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/SimpleGridAscii.hh b/libsrc/spatialdata/spatialdb/SimpleGridAscii.hh index 7b9af9e1..c4c135a7 100644 --- a/libsrc/spatialdata/spatialdb/SimpleGridAscii.hh +++ b/libsrc/spatialdata/spatialdb/SimpleGridAscii.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/SimpleGridDB.cc b/libsrc/spatialdata/spatialdb/SimpleGridDB.cc index 4aafd0c6..e35e00bf 100644 --- a/libsrc/spatialdata/spatialdb/SimpleGridDB.cc +++ b/libsrc/spatialdata/spatialdb/SimpleGridDB.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/SimpleGridDB.hh b/libsrc/spatialdata/spatialdb/SimpleGridDB.hh index f1af2b47..8fffc8fd 100644 --- a/libsrc/spatialdata/spatialdb/SimpleGridDB.hh +++ b/libsrc/spatialdata/spatialdb/SimpleGridDB.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/SimpleGridDB.icc b/libsrc/spatialdata/spatialdb/SimpleGridDB.icc index aee4fab4..e2bb1b98 100644 --- a/libsrc/spatialdata/spatialdb/SimpleGridDB.icc +++ b/libsrc/spatialdata/spatialdb/SimpleGridDB.icc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/SimpleIO.cc b/libsrc/spatialdata/spatialdb/SimpleIO.cc index 66c2116b..dc7b49ab 100644 --- a/libsrc/spatialdata/spatialdb/SimpleIO.cc +++ b/libsrc/spatialdata/spatialdb/SimpleIO.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/SimpleIO.hh b/libsrc/spatialdata/spatialdb/SimpleIO.hh index d5dba8c4..1535e8c8 100644 --- a/libsrc/spatialdata/spatialdb/SimpleIO.hh +++ b/libsrc/spatialdata/spatialdb/SimpleIO.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/SimpleIO.icc b/libsrc/spatialdata/spatialdb/SimpleIO.icc index 0caaac40..1c777c06 100644 --- a/libsrc/spatialdata/spatialdb/SimpleIO.icc +++ b/libsrc/spatialdata/spatialdb/SimpleIO.icc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/SimpleIOAscii.cc b/libsrc/spatialdata/spatialdb/SimpleIOAscii.cc index f45b59ff..1598e062 100644 --- a/libsrc/spatialdata/spatialdb/SimpleIOAscii.cc +++ b/libsrc/spatialdata/spatialdb/SimpleIOAscii.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/SimpleIOAscii.hh b/libsrc/spatialdata/spatialdb/SimpleIOAscii.hh index 8d183f3a..564d38fb 100644 --- a/libsrc/spatialdata/spatialdb/SimpleIOAscii.hh +++ b/libsrc/spatialdata/spatialdb/SimpleIOAscii.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/SimpleIOAscii.icc b/libsrc/spatialdata/spatialdb/SimpleIOAscii.icc index ba042f16..6a072b34 100644 --- a/libsrc/spatialdata/spatialdb/SimpleIOAscii.icc +++ b/libsrc/spatialdata/spatialdb/SimpleIOAscii.icc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/SpatialDB.cc b/libsrc/spatialdata/spatialdb/SpatialDB.cc index 3bd40884..8d46bd1b 100644 --- a/libsrc/spatialdata/spatialdb/SpatialDB.cc +++ b/libsrc/spatialdata/spatialdb/SpatialDB.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/SpatialDB.hh b/libsrc/spatialdata/spatialdb/SpatialDB.hh index 1adb9ad3..0fa2b31d 100644 --- a/libsrc/spatialdata/spatialdb/SpatialDB.hh +++ b/libsrc/spatialdata/spatialdb/SpatialDB.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/SpatialDB.icc b/libsrc/spatialdata/spatialdb/SpatialDB.icc index 0ef53b02..13055608 100644 --- a/libsrc/spatialdata/spatialdb/SpatialDB.icc +++ b/libsrc/spatialdata/spatialdb/SpatialDB.icc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/TimeHistory.cc b/libsrc/spatialdata/spatialdb/TimeHistory.cc index 37bb6205..047a6d7b 100644 --- a/libsrc/spatialdata/spatialdb/TimeHistory.cc +++ b/libsrc/spatialdata/spatialdb/TimeHistory.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/TimeHistory.hh b/libsrc/spatialdata/spatialdb/TimeHistory.hh index 94a4c247..0ecf6b5e 100644 --- a/libsrc/spatialdata/spatialdb/TimeHistory.hh +++ b/libsrc/spatialdata/spatialdb/TimeHistory.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/TimeHistory.icc b/libsrc/spatialdata/spatialdb/TimeHistory.icc index e227c498..08aa3407 100644 --- a/libsrc/spatialdata/spatialdb/TimeHistory.icc +++ b/libsrc/spatialdata/spatialdb/TimeHistory.icc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/TimeHistoryIO.cc b/libsrc/spatialdata/spatialdb/TimeHistoryIO.cc index 67908238..b2b23016 100644 --- a/libsrc/spatialdata/spatialdb/TimeHistoryIO.cc +++ b/libsrc/spatialdata/spatialdb/TimeHistoryIO.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/TimeHistoryIO.hh b/libsrc/spatialdata/spatialdb/TimeHistoryIO.hh index a5f3bfd2..55ef1f9a 100644 --- a/libsrc/spatialdata/spatialdb/TimeHistoryIO.hh +++ b/libsrc/spatialdata/spatialdb/TimeHistoryIO.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/UniformDB.cc b/libsrc/spatialdata/spatialdb/UniformDB.cc index 040d92fb..3b0f67a7 100644 --- a/libsrc/spatialdata/spatialdb/UniformDB.cc +++ b/libsrc/spatialdata/spatialdb/UniformDB.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/UniformDB.hh b/libsrc/spatialdata/spatialdb/UniformDB.hh index c19e8bdc..23cce171 100644 --- a/libsrc/spatialdata/spatialdb/UniformDB.hh +++ b/libsrc/spatialdata/spatialdb/UniformDB.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/UniformDB.icc b/libsrc/spatialdata/spatialdb/UniformDB.icc index 400661d7..2184ca37 100644 --- a/libsrc/spatialdata/spatialdb/UniformDB.icc +++ b/libsrc/spatialdata/spatialdb/UniformDB.icc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/UserFunctionDB.cc b/libsrc/spatialdata/spatialdb/UserFunctionDB.cc index 94c2badd..f3a616c7 100644 --- a/libsrc/spatialdata/spatialdb/UserFunctionDB.cc +++ b/libsrc/spatialdata/spatialdb/UserFunctionDB.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/UserFunctionDB.hh b/libsrc/spatialdata/spatialdb/UserFunctionDB.hh index 34e787f8..3d52fc77 100644 --- a/libsrc/spatialdata/spatialdb/UserFunctionDB.hh +++ b/libsrc/spatialdata/spatialdb/UserFunctionDB.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/cspatialdb.cc b/libsrc/spatialdata/spatialdb/cspatialdb.cc index 9bdb036c..6279dd7f 100644 --- a/libsrc/spatialdata/spatialdb/cspatialdb.cc +++ b/libsrc/spatialdata/spatialdb/cspatialdb.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/cspatialdb.h b/libsrc/spatialdata/spatialdb/cspatialdb.h index 66ef8cde..5a961e21 100644 --- a/libsrc/spatialdata/spatialdb/cspatialdb.h +++ b/libsrc/spatialdata/spatialdb/cspatialdb.h @@ -3,7 +3,7 @@ * This code is part of SpatialData, developed through the Computational Infrastructure * for Geodynamics (https://github.com/geodynamics/spatialdata). * - * Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. + * Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. * All rights reserved. * * See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/f77spatialdb.cc b/libsrc/spatialdata/spatialdb/f77spatialdb.cc index bd6cc275..69ca9cb0 100644 --- a/libsrc/spatialdata/spatialdb/f77spatialdb.cc +++ b/libsrc/spatialdata/spatialdb/f77spatialdb.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/f77spatialdb.h b/libsrc/spatialdata/spatialdb/f77spatialdb.h index 0c2c38a9..c8520ad3 100644 --- a/libsrc/spatialdata/spatialdb/f77spatialdb.h +++ b/libsrc/spatialdata/spatialdb/f77spatialdb.h @@ -3,7 +3,7 @@ * This code is part of SpatialData, developed through the Computational Infrastructure * for Geodynamics (https://github.com/geodynamics/spatialdata). * - * Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. + * Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. * All rights reserved. * * See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/spatialdb/spatialdbfwd.hh b/libsrc/spatialdata/spatialdb/spatialdbfwd.hh index 8b7f20df..7c8a267f 100644 --- a/libsrc/spatialdata/spatialdb/spatialdbfwd.hh +++ b/libsrc/spatialdata/spatialdb/spatialdbfwd.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/units/Makefile.am b/libsrc/spatialdata/units/Makefile.am index fda89c4a..28851d44 100644 --- a/libsrc/spatialdata/units/Makefile.am +++ b/libsrc/spatialdata/units/Makefile.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/units/Parser.cc b/libsrc/spatialdata/units/Parser.cc index 812cb680..d3691331 100644 --- a/libsrc/spatialdata/units/Parser.cc +++ b/libsrc/spatialdata/units/Parser.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/units/Parser.hh b/libsrc/spatialdata/units/Parser.hh index b3f667e9..0c0191c6 100644 --- a/libsrc/spatialdata/units/Parser.hh +++ b/libsrc/spatialdata/units/Parser.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/units/unitsfwd.hh b/libsrc/spatialdata/units/unitsfwd.hh index 98bd194c..95a8d25e 100644 --- a/libsrc/spatialdata/units/unitsfwd.hh +++ b/libsrc/spatialdata/units/unitsfwd.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/utils/LineParser.cc b/libsrc/spatialdata/utils/LineParser.cc index 504c9c3c..e2d7ad06 100644 --- a/libsrc/spatialdata/utils/LineParser.cc +++ b/libsrc/spatialdata/utils/LineParser.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/utils/LineParser.hh b/libsrc/spatialdata/utils/LineParser.hh index ce8551cb..bdccf87a 100644 --- a/libsrc/spatialdata/utils/LineParser.hh +++ b/libsrc/spatialdata/utils/LineParser.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/utils/Makefile.am b/libsrc/spatialdata/utils/Makefile.am index daa26854..2c121612 100644 --- a/libsrc/spatialdata/utils/Makefile.am +++ b/libsrc/spatialdata/utils/Makefile.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/utils/PointsStream.cc b/libsrc/spatialdata/utils/PointsStream.cc index efeb09f8..24d5e557 100644 --- a/libsrc/spatialdata/utils/PointsStream.cc +++ b/libsrc/spatialdata/utils/PointsStream.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/utils/PointsStream.hh b/libsrc/spatialdata/utils/PointsStream.hh index f4d07922..4899236b 100644 --- a/libsrc/spatialdata/utils/PointsStream.hh +++ b/libsrc/spatialdata/utils/PointsStream.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/utils/PointsStream.icc b/libsrc/spatialdata/utils/PointsStream.icc index 2a5086b5..331c7ecc 100644 --- a/libsrc/spatialdata/utils/PointsStream.icc +++ b/libsrc/spatialdata/utils/PointsStream.icc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/utils/SpatialdataVersion.cc b/libsrc/spatialdata/utils/SpatialdataVersion.cc index 2df08e85..5fff5501 100644 --- a/libsrc/spatialdata/utils/SpatialdataVersion.cc +++ b/libsrc/spatialdata/utils/SpatialdataVersion.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/utils/SpatialdataVersion.hh b/libsrc/spatialdata/utils/SpatialdataVersion.hh index 0be95b98..d105b5e5 100644 --- a/libsrc/spatialdata/utils/SpatialdataVersion.hh +++ b/libsrc/spatialdata/utils/SpatialdataVersion.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/libsrc/spatialdata/utils/utilsfwd.hh b/libsrc/spatialdata/utils/utilsfwd.hh index a363a777..00c9d19e 100644 --- a/libsrc/spatialdata/utils/utilsfwd.hh +++ b/libsrc/spatialdata/utils/utilsfwd.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/m4 b/m4 index 371e0125..1a455e8d 160000 --- a/m4 +++ b/m4 @@ -1 +1 @@ -Subproject commit 371e0125e547aaf204153920dbc64280846e88ae +Subproject commit 1a455e8d0e5f98316f9d50dc9a93e641d8f7df60 diff --git a/modulesrc/Makefile.am b/modulesrc/Makefile.am index 80068147..65043fdf 100644 --- a/modulesrc/Makefile.am +++ b/modulesrc/Makefile.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/modulesrc/geocoords/CSCart.i b/modulesrc/geocoords/CSCart.i index 9d8edfad..a96747fc 100644 --- a/modulesrc/geocoords/CSCart.i +++ b/modulesrc/geocoords/CSCart.i @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/modulesrc/geocoords/CSGeo.i b/modulesrc/geocoords/CSGeo.i index 7e88432c..a13ac92b 100644 --- a/modulesrc/geocoords/CSGeo.i +++ b/modulesrc/geocoords/CSGeo.i @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/modulesrc/geocoords/CSGeoLocal.i b/modulesrc/geocoords/CSGeoLocal.i index 3c18d3e9..b2d31fa8 100644 --- a/modulesrc/geocoords/CSGeoLocal.i +++ b/modulesrc/geocoords/CSGeoLocal.i @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/modulesrc/geocoords/Converter.i b/modulesrc/geocoords/Converter.i index 690571ff..d01f9ee5 100644 --- a/modulesrc/geocoords/Converter.i +++ b/modulesrc/geocoords/Converter.i @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/modulesrc/geocoords/CoordSys.i b/modulesrc/geocoords/CoordSys.i index 9b0233c2..b5fab1c9 100644 --- a/modulesrc/geocoords/CoordSys.i +++ b/modulesrc/geocoords/CoordSys.i @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/modulesrc/geocoords/Makefile.am b/modulesrc/geocoords/Makefile.am index e9bbff56..288e53ba 100644 --- a/modulesrc/geocoords/Makefile.am +++ b/modulesrc/geocoords/Makefile.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/modulesrc/geocoords/geocoords.i b/modulesrc/geocoords/geocoords.i index 662b0ce3..ed0fe872 100644 --- a/modulesrc/geocoords/geocoords.i +++ b/modulesrc/geocoords/geocoords.i @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/modulesrc/include/Makefile.am b/modulesrc/include/Makefile.am index 1a8e0d2f..389468af 100644 --- a/modulesrc/include/Makefile.am +++ b/modulesrc/include/Makefile.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/modulesrc/include/chararray.i b/modulesrc/include/chararray.i index 93272a17..c6c66160 100644 --- a/modulesrc/include/chararray.i +++ b/modulesrc/include/chararray.i @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/modulesrc/module.am b/modulesrc/module.am index 13c9cb11..b151fe1a 100644 --- a/modulesrc/module.am +++ b/modulesrc/module.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/modulesrc/spatialdb/AnalyticDB.i b/modulesrc/spatialdb/AnalyticDB.i index 2aa37978..b2fd7b1a 100644 --- a/modulesrc/spatialdb/AnalyticDB.i +++ b/modulesrc/spatialdb/AnalyticDB.i @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/modulesrc/spatialdb/CompositeDB.i b/modulesrc/spatialdb/CompositeDB.i index 0625ec00..30645a6c 100644 --- a/modulesrc/spatialdb/CompositeDB.i +++ b/modulesrc/spatialdb/CompositeDB.i @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/modulesrc/spatialdb/GravityField.i b/modulesrc/spatialdb/GravityField.i index 168e69da..26edd942 100644 --- a/modulesrc/spatialdb/GravityField.i +++ b/modulesrc/spatialdb/GravityField.i @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/modulesrc/spatialdb/Makefile.am b/modulesrc/spatialdb/Makefile.am index ffadb638..5c925a2e 100644 --- a/modulesrc/spatialdb/Makefile.am +++ b/modulesrc/spatialdb/Makefile.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/modulesrc/spatialdb/SCECCVMH.i b/modulesrc/spatialdb/SCECCVMH.i index 87412a48..e1c490e8 100644 --- a/modulesrc/spatialdb/SCECCVMH.i +++ b/modulesrc/spatialdb/SCECCVMH.i @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/modulesrc/spatialdb/SimpleDB.i b/modulesrc/spatialdb/SimpleDB.i index b44c54c6..39cd845f 100644 --- a/modulesrc/spatialdb/SimpleDB.i +++ b/modulesrc/spatialdb/SimpleDB.i @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/modulesrc/spatialdb/SimpleDBData.i b/modulesrc/spatialdb/SimpleDBData.i index 566ba885..8cf2cf85 100644 --- a/modulesrc/spatialdb/SimpleDBData.i +++ b/modulesrc/spatialdb/SimpleDBData.i @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/modulesrc/spatialdb/SimpleGridAscii.i b/modulesrc/spatialdb/SimpleGridAscii.i index 078a67b2..0d135e99 100644 --- a/modulesrc/spatialdb/SimpleGridAscii.i +++ b/modulesrc/spatialdb/SimpleGridAscii.i @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/modulesrc/spatialdb/SimpleGridDB.i b/modulesrc/spatialdb/SimpleGridDB.i index 15899998..cf9df4ef 100644 --- a/modulesrc/spatialdb/SimpleGridDB.i +++ b/modulesrc/spatialdb/SimpleGridDB.i @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/modulesrc/spatialdb/SimpleIO.i b/modulesrc/spatialdb/SimpleIO.i index 3628ecf9..e8ccb163 100644 --- a/modulesrc/spatialdb/SimpleIO.i +++ b/modulesrc/spatialdb/SimpleIO.i @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/modulesrc/spatialdb/SimpleIOAscii.i b/modulesrc/spatialdb/SimpleIOAscii.i index 538efca5..11400ba8 100644 --- a/modulesrc/spatialdb/SimpleIOAscii.i +++ b/modulesrc/spatialdb/SimpleIOAscii.i @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/modulesrc/spatialdb/SpatialDBObj.i b/modulesrc/spatialdb/SpatialDBObj.i index e0818a8d..37fc0345 100644 --- a/modulesrc/spatialdb/SpatialDBObj.i +++ b/modulesrc/spatialdb/SpatialDBObj.i @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/modulesrc/spatialdb/TimeHistory.i b/modulesrc/spatialdb/TimeHistory.i index 42b2f339..0eccb45d 100644 --- a/modulesrc/spatialdb/TimeHistory.i +++ b/modulesrc/spatialdb/TimeHistory.i @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/modulesrc/spatialdb/TimeHistoryIO.i b/modulesrc/spatialdb/TimeHistoryIO.i index 6c441230..a36b0310 100644 --- a/modulesrc/spatialdb/TimeHistoryIO.i +++ b/modulesrc/spatialdb/TimeHistoryIO.i @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/modulesrc/spatialdb/UniformDB.i b/modulesrc/spatialdb/UniformDB.i index bafa3917..b9cecee0 100644 --- a/modulesrc/spatialdb/UniformDB.i +++ b/modulesrc/spatialdb/UniformDB.i @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/modulesrc/spatialdb/UserFunctionDB.i b/modulesrc/spatialdb/UserFunctionDB.i index cf9c2a78..7bc737eb 100644 --- a/modulesrc/spatialdb/UserFunctionDB.i +++ b/modulesrc/spatialdb/UserFunctionDB.i @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/modulesrc/spatialdb/spatialdb.i b/modulesrc/spatialdb/spatialdb.i index 2f79f06b..3a682f81 100644 --- a/modulesrc/spatialdb/spatialdb.i +++ b/modulesrc/spatialdb/spatialdb.i @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/modulesrc/utils/Makefile.am b/modulesrc/utils/Makefile.am index b4dc6aaa..aba063b8 100644 --- a/modulesrc/utils/Makefile.am +++ b/modulesrc/utils/Makefile.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/modulesrc/utils/SpatialdataVersion.i b/modulesrc/utils/SpatialdataVersion.i index 74519e4b..6c927ed6 100644 --- a/modulesrc/utils/SpatialdataVersion.i +++ b/modulesrc/utils/SpatialdataVersion.i @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/modulesrc/utils/utils.i b/modulesrc/utils/utils.i index 3687ad92..6371d58d 100644 --- a/modulesrc/utils/utils.i +++ b/modulesrc/utils/utils.i @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/setup.cfg b/setup.cfg index c99e2c63..91a6d3ca 100644 --- a/setup.cfg +++ b/setup.cfg @@ -4,7 +4,7 @@ tag_date = 0 [metadata] name = spatialdata -version = 3.1.3 +version = 4.0.0 author = Brad Aagaard author_email = baagaard@usgs.gov description = Library for specifying spatial variations in input parameters (used in PyLith). diff --git a/spatialdata/Makefile.am b/spatialdata/Makefile.am index f444fd61..4a6714ad 100644 --- a/spatialdata/Makefile.am +++ b/spatialdata/Makefile.am @@ -3,7 +3,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/spatialdata/__init__.py b/spatialdata/__init__.py index af7a14ad..256a254e 100644 --- a/spatialdata/__init__.py +++ b/spatialdata/__init__.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/spatialdata/geocoords/CSCart.py b/spatialdata/geocoords/CSCart.py index 96b261c0..bf2edc42 100644 --- a/spatialdata/geocoords/CSCart.py +++ b/spatialdata/geocoords/CSCart.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/spatialdata/geocoords/CSGeo.py b/spatialdata/geocoords/CSGeo.py index 90e8cf91..d5c5bc13 100644 --- a/spatialdata/geocoords/CSGeo.py +++ b/spatialdata/geocoords/CSGeo.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/spatialdata/geocoords/CSGeoLocal.py b/spatialdata/geocoords/CSGeoLocal.py index 5fb1b203..f32f25c5 100644 --- a/spatialdata/geocoords/CSGeoLocal.py +++ b/spatialdata/geocoords/CSGeoLocal.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/spatialdata/geocoords/Converter.py b/spatialdata/geocoords/Converter.py index 024d7ef3..167c4051 100644 --- a/spatialdata/geocoords/Converter.py +++ b/spatialdata/geocoords/Converter.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/spatialdata/geocoords/CoordSys.py b/spatialdata/geocoords/CoordSys.py index c1213b0d..908e3f6c 100644 --- a/spatialdata/geocoords/CoordSys.py +++ b/spatialdata/geocoords/CoordSys.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/spatialdata/geocoords/__init__.py b/spatialdata/geocoords/__init__.py index fb07436b..7154441d 100644 --- a/spatialdata/geocoords/__init__.py +++ b/spatialdata/geocoords/__init__.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/spatialdata/spatialdb/AnalyticDB.py b/spatialdata/spatialdb/AnalyticDB.py index 21b1e848..c04f53de 100644 --- a/spatialdata/spatialdb/AnalyticDB.py +++ b/spatialdata/spatialdb/AnalyticDB.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/spatialdata/spatialdb/CompositeDB.py b/spatialdata/spatialdb/CompositeDB.py index ed8c13b8..6cf69332 100644 --- a/spatialdata/spatialdb/CompositeDB.py +++ b/spatialdata/spatialdb/CompositeDB.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/spatialdata/spatialdb/GravityField.py b/spatialdata/spatialdb/GravityField.py index b75167aa..97553d7e 100644 --- a/spatialdata/spatialdb/GravityField.py +++ b/spatialdata/spatialdb/GravityField.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/spatialdata/spatialdb/SCECCVMH.py b/spatialdata/spatialdb/SCECCVMH.py index 3f536c7f..45140577 100644 --- a/spatialdata/spatialdb/SCECCVMH.py +++ b/spatialdata/spatialdb/SCECCVMH.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/spatialdata/spatialdb/SimpleDB.py b/spatialdata/spatialdb/SimpleDB.py index bc4e1605..b259115f 100644 --- a/spatialdata/spatialdb/SimpleDB.py +++ b/spatialdata/spatialdb/SimpleDB.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/spatialdata/spatialdb/SimpleGridAscii.py b/spatialdata/spatialdb/SimpleGridAscii.py index 1e94ef1a..a95c5d6c 100644 --- a/spatialdata/spatialdb/SimpleGridAscii.py +++ b/spatialdata/spatialdb/SimpleGridAscii.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/spatialdata/spatialdb/SimpleGridDB.py b/spatialdata/spatialdb/SimpleGridDB.py index c3049709..e652d211 100644 --- a/spatialdata/spatialdb/SimpleGridDB.py +++ b/spatialdata/spatialdb/SimpleGridDB.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/spatialdata/spatialdb/SimpleIO.py b/spatialdata/spatialdb/SimpleIO.py index 20700f9a..64884f93 100644 --- a/spatialdata/spatialdb/SimpleIO.py +++ b/spatialdata/spatialdb/SimpleIO.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/spatialdata/spatialdb/SimpleIOAscii.py b/spatialdata/spatialdb/SimpleIOAscii.py index 2ffd2ed1..f673d0b1 100644 --- a/spatialdata/spatialdb/SimpleIOAscii.py +++ b/spatialdata/spatialdb/SimpleIOAscii.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/spatialdata/spatialdb/SpatialDBObj.py b/spatialdata/spatialdb/SpatialDBObj.py index 21ffca1a..11387cc3 100644 --- a/spatialdata/spatialdb/SpatialDBObj.py +++ b/spatialdata/spatialdb/SpatialDBObj.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/spatialdata/spatialdb/TimeHistory.py b/spatialdata/spatialdb/TimeHistory.py index 78475eaa..b87d201c 100644 --- a/spatialdata/spatialdb/TimeHistory.py +++ b/spatialdata/spatialdb/TimeHistory.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/spatialdata/spatialdb/TimeHistoryIO.py b/spatialdata/spatialdb/TimeHistoryIO.py index 311487ff..979df2c7 100644 --- a/spatialdata/spatialdb/TimeHistoryIO.py +++ b/spatialdata/spatialdb/TimeHistoryIO.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/spatialdata/spatialdb/UniformDB.py b/spatialdata/spatialdb/UniformDB.py index 19ff51c4..37c587b7 100644 --- a/spatialdata/spatialdb/UniformDB.py +++ b/spatialdata/spatialdb/UniformDB.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/spatialdata/spatialdb/UserFunctionDB.py b/spatialdata/spatialdb/UserFunctionDB.py index 2bfc0c25..9445a65e 100644 --- a/spatialdata/spatialdb/UserFunctionDB.py +++ b/spatialdata/spatialdb/UserFunctionDB.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/spatialdata/spatialdb/__init__.py b/spatialdata/spatialdb/__init__.py index 0118e3d6..3cff4374 100644 --- a/spatialdata/spatialdb/__init__.py +++ b/spatialdata/spatialdb/__init__.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/spatialdata/spatialdb/generator/GenSimpleDBApp.py b/spatialdata/spatialdb/generator/GenSimpleDBApp.py index 971303ec..5eea958d 100644 --- a/spatialdata/spatialdb/generator/GenSimpleDBApp.py +++ b/spatialdata/spatialdb/generator/GenSimpleDBApp.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/spatialdata/spatialdb/generator/Geometry.py b/spatialdata/spatialdb/generator/Geometry.py index c6083940..043b63b1 100644 --- a/spatialdata/spatialdb/generator/Geometry.py +++ b/spatialdata/spatialdb/generator/Geometry.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/spatialdata/spatialdb/generator/Shaper.py b/spatialdata/spatialdb/generator/Shaper.py index 0ba58d3b..54d78a8e 100644 --- a/spatialdata/spatialdb/generator/Shaper.py +++ b/spatialdata/spatialdb/generator/Shaper.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/spatialdata/spatialdb/generator/Value.py b/spatialdata/spatialdb/generator/Value.py index e6c94f3a..570bb48e 100644 --- a/spatialdata/spatialdb/generator/Value.py +++ b/spatialdata/spatialdb/generator/Value.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/spatialdata/spatialdb/generator/__init__.py b/spatialdata/spatialdb/generator/__init__.py index d23fc242..9200bd6f 100644 --- a/spatialdata/spatialdb/generator/__init__.py +++ b/spatialdata/spatialdb/generator/__init__.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/spatialdata/testing/TestCases.py b/spatialdata/testing/TestCases.py index 0ab4b35b..7f1dc741 100644 --- a/spatialdata/testing/TestCases.py +++ b/spatialdata/testing/TestCases.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/spatialdata/testing/UnitTestApp.py b/spatialdata/testing/UnitTestApp.py index 4a6ef24a..ff16e59f 100644 --- a/spatialdata/testing/UnitTestApp.py +++ b/spatialdata/testing/UnitTestApp.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/spatialdata/utils/PointsStream.py b/spatialdata/utils/PointsStream.py index 111d7667..e51d1f85 100644 --- a/spatialdata/utils/PointsStream.py +++ b/spatialdata/utils/PointsStream.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/spatialdata/utils/__init__.py b/spatialdata/utils/__init__.py index 14d59b36..c203566a 100644 --- a/spatialdata/utils/__init__.py +++ b/spatialdata/utils/__init__.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/subpackage.am b/subpackage.am index 194125f1..09c6bb3f 100644 --- a/subpackage.am +++ b/subpackage.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/templates/Makefile.am b/templates/Makefile.am index 2e00d31e..8d12f176 100644 --- a/templates/Makefile.am +++ b/templates/Makefile.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/templates/spatialdb/Makefile.am b/templates/spatialdb/Makefile.am index f32456ff..2dfa2895 100644 --- a/templates/spatialdb/Makefile.am +++ b/templates/spatialdb/Makefile.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/templates/spatialdb/UniformVelModel.cc b/templates/spatialdb/UniformVelModel.cc index 09117a86..1761d695 100644 --- a/templates/spatialdb/UniformVelModel.cc +++ b/templates/spatialdb/UniformVelModel.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/templates/spatialdb/UniformVelModel.hh b/templates/spatialdb/UniformVelModel.hh index 323a1fa4..a1964229 100644 --- a/templates/spatialdb/UniformVelModel.hh +++ b/templates/spatialdb/UniformVelModel.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/templates/spatialdb/UniformVelModel.i b/templates/spatialdb/UniformVelModel.i index f348a54c..f6096024 100644 --- a/templates/spatialdb/UniformVelModel.i +++ b/templates/spatialdb/UniformVelModel.i @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/templates/spatialdb/UniformVelModel.py b/templates/spatialdb/UniformVelModel.py index c6a998fe..0e66648a 100644 --- a/templates/spatialdb/UniformVelModel.py +++ b/templates/spatialdb/UniformVelModel.py @@ -4,7 +4,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/templates/spatialdb/__init__.py b/templates/spatialdb/__init__.py index def1ae5b..7702af86 100644 --- a/templates/spatialdb/__init__.py +++ b/templates/spatialdb/__init__.py @@ -4,7 +4,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/templates/spatialdb/configure.ac b/templates/spatialdb/configure.ac index 89e7f481..2488ccd3 100644 --- a/templates/spatialdb/configure.ac +++ b/templates/spatialdb/configure.ac @@ -4,7 +4,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/templates/spatialdb/m4 b/templates/spatialdb/m4 index 9ff58183..f5b39ccf 160000 --- a/templates/spatialdb/m4 +++ b/templates/spatialdb/m4 @@ -1 +1 @@ -Subproject commit 9ff5818338beb85993658275bf6745d152704772 +Subproject commit f5b39ccf9ebf30a919f1a36ea05a3b53e84cd899 diff --git a/templates/spatialdb/spatialdbcontrib.i b/templates/spatialdb/spatialdbcontrib.i index 2ec83169..1995c7f3 100644 --- a/templates/spatialdb/spatialdbcontrib.i +++ b/templates/spatialdb/spatialdbcontrib.i @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/templates/spatialdb/tests/Makefile.am b/templates/spatialdb/tests/Makefile.am index 25cb90d1..9a72831c 100644 --- a/templates/spatialdb/tests/Makefile.am +++ b/templates/spatialdb/tests/Makefile.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/templates/spatialdb/tests/TestUniformVelModel.py b/templates/spatialdb/tests/TestUniformVelModel.py index 82cfd326..00ebb11b 100644 --- a/templates/spatialdb/tests/TestUniformVelModel.py +++ b/templates/spatialdb/tests/TestUniformVelModel.py @@ -4,7 +4,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/templates/spatialdb/tests/testcontrib.py b/templates/spatialdb/tests/testcontrib.py index be82949a..4a82da8d 100644 --- a/templates/spatialdb/tests/testcontrib.py +++ b/templates/spatialdb/tests/testcontrib.py @@ -4,7 +4,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/Makefile.am b/tests/Makefile.am index 1b0f66ed..3c112ec5 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/check.am b/tests/check.am index 93d47aa2..75724b5a 100644 --- a/tests/check.am +++ b/tests/check.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/Makefile.am b/tests/libtests/Makefile.am index 0537d28f..c9f713d4 100644 --- a/tests/libtests/Makefile.am +++ b/tests/libtests/Makefile.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/geocoords/Makefile.am b/tests/libtests/geocoords/Makefile.am index a0334113..b202a845 100644 --- a/tests/libtests/geocoords/Makefile.am +++ b/tests/libtests/geocoords/Makefile.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/geocoords/TestCSCart.cc b/tests/libtests/geocoords/TestCSCart.cc index 929b83af..1dbb638d 100644 --- a/tests/libtests/geocoords/TestCSCart.cc +++ b/tests/libtests/geocoords/TestCSCart.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/geocoords/TestCSGeo.cc b/tests/libtests/geocoords/TestCSGeo.cc index a76ff16c..1cb4bced 100644 --- a/tests/libtests/geocoords/TestCSGeo.cc +++ b/tests/libtests/geocoords/TestCSGeo.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/geocoords/TestCSGeoLocal.cc b/tests/libtests/geocoords/TestCSGeoLocal.cc index c7bbb9e7..a4c1da78 100644 --- a/tests/libtests/geocoords/TestCSGeoLocal.cc +++ b/tests/libtests/geocoords/TestCSGeoLocal.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/geocoords/TestCSPicklerAscii.cc b/tests/libtests/geocoords/TestCSPicklerAscii.cc index 3f7e9306..0d11e945 100644 --- a/tests/libtests/geocoords/TestCSPicklerAscii.cc +++ b/tests/libtests/geocoords/TestCSPicklerAscii.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/geocoords/TestConverter.cc b/tests/libtests/geocoords/TestConverter.cc index c2bc9580..f99b27b4 100644 --- a/tests/libtests/geocoords/TestConverter.cc +++ b/tests/libtests/geocoords/TestConverter.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/geocoords/TestConverter.hh b/tests/libtests/geocoords/TestConverter.hh index d3664c48..26e588b2 100644 --- a/tests/libtests/geocoords/TestConverter.hh +++ b/tests/libtests/geocoords/TestConverter.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/geocoords/TestConverter_Cases.cc b/tests/libtests/geocoords/TestConverter_Cases.cc index 2f235611..3032fe14 100644 --- a/tests/libtests/geocoords/TestConverter_Cases.cc +++ b/tests/libtests/geocoords/TestConverter_Cases.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/geocoords/test_driver.cc b/tests/libtests/geocoords/test_driver.cc index e7e03948..e961c13e 100644 --- a/tests/libtests/geocoords/test_driver.cc +++ b/tests/libtests/geocoords/test_driver.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/spatialdb/Makefile.am b/tests/libtests/spatialdb/Makefile.am index b6cd6728..332569fb 100644 --- a/tests/libtests/spatialdb/Makefile.am +++ b/tests/libtests/spatialdb/Makefile.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/spatialdb/TestAnalyticDB.cc b/tests/libtests/spatialdb/TestAnalyticDB.cc index 5fe1d7eb..ae01cae5 100644 --- a/tests/libtests/spatialdb/TestAnalyticDB.cc +++ b/tests/libtests/spatialdb/TestAnalyticDB.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/spatialdb/TestCompositeDB.cc b/tests/libtests/spatialdb/TestCompositeDB.cc index d0531257..8a16f446 100644 --- a/tests/libtests/spatialdb/TestCompositeDB.cc +++ b/tests/libtests/spatialdb/TestCompositeDB.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/spatialdb/TestGravityField.cc b/tests/libtests/spatialdb/TestGravityField.cc index 70024bfb..280b1b7a 100644 --- a/tests/libtests/spatialdb/TestGravityField.cc +++ b/tests/libtests/spatialdb/TestGravityField.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/spatialdb/TestGravityField.hh b/tests/libtests/spatialdb/TestGravityField.hh index c4129069..dead8f38 100644 --- a/tests/libtests/spatialdb/TestGravityField.hh +++ b/tests/libtests/spatialdb/TestGravityField.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/spatialdb/TestGravityField_Cases.cc b/tests/libtests/spatialdb/TestGravityField_Cases.cc index 8ed0f230..229ccffa 100644 --- a/tests/libtests/spatialdb/TestGravityField_Cases.cc +++ b/tests/libtests/spatialdb/TestGravityField_Cases.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/spatialdb/TestSCECCVMH.cc b/tests/libtests/spatialdb/TestSCECCVMH.cc index f2a48350..485a2d19 100644 --- a/tests/libtests/spatialdb/TestSCECCVMH.cc +++ b/tests/libtests/spatialdb/TestSCECCVMH.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/spatialdb/TestSimpleDB.cc b/tests/libtests/spatialdb/TestSimpleDB.cc index 8b0bc4bf..8cb3490f 100644 --- a/tests/libtests/spatialdb/TestSimpleDB.cc +++ b/tests/libtests/spatialdb/TestSimpleDB.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/spatialdb/TestSimpleDB.hh b/tests/libtests/spatialdb/TestSimpleDB.hh index bf0aba29..51fc802a 100644 --- a/tests/libtests/spatialdb/TestSimpleDB.hh +++ b/tests/libtests/spatialdb/TestSimpleDB.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/spatialdb/TestSimpleDBData.cc b/tests/libtests/spatialdb/TestSimpleDBData.cc index 468c7e52..9022f1b8 100644 --- a/tests/libtests/spatialdb/TestSimpleDBData.cc +++ b/tests/libtests/spatialdb/TestSimpleDBData.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/spatialdb/TestSimpleDBQuery.cc b/tests/libtests/spatialdb/TestSimpleDBQuery.cc index c3d48e35..9a0f8a13 100644 --- a/tests/libtests/spatialdb/TestSimpleDBQuery.cc +++ b/tests/libtests/spatialdb/TestSimpleDBQuery.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/spatialdb/TestSimpleDBQuery.hh b/tests/libtests/spatialdb/TestSimpleDBQuery.hh index 5fd67d73..4ae0b764 100644 --- a/tests/libtests/spatialdb/TestSimpleDBQuery.hh +++ b/tests/libtests/spatialdb/TestSimpleDBQuery.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/spatialdb/TestSimpleDBQuery_Cases.cc b/tests/libtests/spatialdb/TestSimpleDBQuery_Cases.cc index 1b88a2cc..2bdbc934 100644 --- a/tests/libtests/spatialdb/TestSimpleDBQuery_Cases.cc +++ b/tests/libtests/spatialdb/TestSimpleDBQuery_Cases.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/spatialdb/TestSimpleDB_Cases.cc b/tests/libtests/spatialdb/TestSimpleDB_Cases.cc index 553d2e83..965079c3 100644 --- a/tests/libtests/spatialdb/TestSimpleDB_Cases.cc +++ b/tests/libtests/spatialdb/TestSimpleDB_Cases.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/spatialdb/TestSimpleGridAscii.cc b/tests/libtests/spatialdb/TestSimpleGridAscii.cc index 710a131f..ab57a5d0 100644 --- a/tests/libtests/spatialdb/TestSimpleGridAscii.cc +++ b/tests/libtests/spatialdb/TestSimpleGridAscii.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/spatialdb/TestSimpleGridDB.cc b/tests/libtests/spatialdb/TestSimpleGridDB.cc index 37825c34..581bdbba 100644 --- a/tests/libtests/spatialdb/TestSimpleGridDB.cc +++ b/tests/libtests/spatialdb/TestSimpleGridDB.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/spatialdb/TestSimpleGridDB.hh b/tests/libtests/spatialdb/TestSimpleGridDB.hh index 29cc49d7..795aaf4f 100644 --- a/tests/libtests/spatialdb/TestSimpleGridDB.hh +++ b/tests/libtests/spatialdb/TestSimpleGridDB.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/spatialdb/TestSimpleGridDB_Cases.cc b/tests/libtests/spatialdb/TestSimpleGridDB_Cases.cc index ae7dd775..8de9a246 100644 --- a/tests/libtests/spatialdb/TestSimpleGridDB_Cases.cc +++ b/tests/libtests/spatialdb/TestSimpleGridDB_Cases.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/spatialdb/TestSimpleIOAscii.cc b/tests/libtests/spatialdb/TestSimpleIOAscii.cc index f3f3a692..97ad5978 100644 --- a/tests/libtests/spatialdb/TestSimpleIOAscii.cc +++ b/tests/libtests/spatialdb/TestSimpleIOAscii.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/spatialdb/TestSpatialDB.cc b/tests/libtests/spatialdb/TestSpatialDB.cc index ea8e8cdb..88de7f91 100644 --- a/tests/libtests/spatialdb/TestSpatialDB.cc +++ b/tests/libtests/spatialdb/TestSpatialDB.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/spatialdb/TestTimeHistory.cc b/tests/libtests/spatialdb/TestTimeHistory.cc index 3985a11d..ce6625fd 100644 --- a/tests/libtests/spatialdb/TestTimeHistory.cc +++ b/tests/libtests/spatialdb/TestTimeHistory.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/spatialdb/TestTimeHistoryIO.cc b/tests/libtests/spatialdb/TestTimeHistoryIO.cc index 74bf757c..91d2da19 100644 --- a/tests/libtests/spatialdb/TestTimeHistoryIO.cc +++ b/tests/libtests/spatialdb/TestTimeHistoryIO.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/spatialdb/TestUniformDB.cc b/tests/libtests/spatialdb/TestUniformDB.cc index fbf80517..572d3d38 100644 --- a/tests/libtests/spatialdb/TestUniformDB.cc +++ b/tests/libtests/spatialdb/TestUniformDB.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/spatialdb/TestUserFunctionDB.cc b/tests/libtests/spatialdb/TestUserFunctionDB.cc index 4e767784..8903366c 100644 --- a/tests/libtests/spatialdb/TestUserFunctionDB.cc +++ b/tests/libtests/spatialdb/TestUserFunctionDB.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/spatialdb/TestUserFunctionDB.hh b/tests/libtests/spatialdb/TestUserFunctionDB.hh index ce5de246..502fc438 100644 --- a/tests/libtests/spatialdb/TestUserFunctionDB.hh +++ b/tests/libtests/spatialdb/TestUserFunctionDB.hh @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/spatialdb/TestUserFunctionDB_Cases.cc b/tests/libtests/spatialdb/TestUserFunctionDB_Cases.cc index 516a8a4a..c0e64b43 100644 --- a/tests/libtests/spatialdb/TestUserFunctionDB_Cases.cc +++ b/tests/libtests/spatialdb/TestUserFunctionDB_Cases.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/spatialdb/data/Makefile.am b/tests/libtests/spatialdb/data/Makefile.am index 5528011b..164a4b4f 100644 --- a/tests/libtests/spatialdb/data/Makefile.am +++ b/tests/libtests/spatialdb/data/Makefile.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/spatialdb/test_driver.cc b/tests/libtests/spatialdb/test_driver.cc index e7e03948..e961c13e 100644 --- a/tests/libtests/spatialdb/test_driver.cc +++ b/tests/libtests/spatialdb/test_driver.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/spatialdb/testf77query.h b/tests/libtests/spatialdb/testf77query.h index 98bafe10..92cf9dbb 100644 --- a/tests/libtests/spatialdb/testf77query.h +++ b/tests/libtests/spatialdb/testf77query.h @@ -3,7 +3,7 @@ * This code is part of SpatialData, developed through the Computational Infrastructure * for Geodynamics (https://github.com/geodynamics/spatialdata). * - * Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. + * Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. * All rights reserved. * * See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/units/Makefile.am b/tests/libtests/units/Makefile.am index af62c9e6..75dfae36 100644 --- a/tests/libtests/units/Makefile.am +++ b/tests/libtests/units/Makefile.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/units/TestParser.cc b/tests/libtests/units/TestParser.cc index 5b055855..15b23d37 100644 --- a/tests/libtests/units/TestParser.cc +++ b/tests/libtests/units/TestParser.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/utils/Makefile.am b/tests/libtests/utils/Makefile.am index aee98da0..6293a992 100644 --- a/tests/libtests/utils/Makefile.am +++ b/tests/libtests/utils/Makefile.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/utils/TestPointsStream.cc b/tests/libtests/utils/TestPointsStream.cc index ecb41a23..6dd395b9 100644 --- a/tests/libtests/utils/TestPointsStream.cc +++ b/tests/libtests/utils/TestPointsStream.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/libtests/utils/TestSpatialdataVersion.cc b/tests/libtests/utils/TestSpatialdataVersion.cc index ef76635d..5e415f91 100644 --- a/tests/libtests/utils/TestSpatialdataVersion.cc +++ b/tests/libtests/utils/TestSpatialdataVersion.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/pytests/Makefile.am b/tests/pytests/Makefile.am index 7486b997..75449c2c 100644 --- a/tests/pytests/Makefile.am +++ b/tests/pytests/Makefile.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/pytests/geocoords/Makefile.am b/tests/pytests/geocoords/Makefile.am index 503d88f2..ed1a2689 100644 --- a/tests/pytests/geocoords/Makefile.am +++ b/tests/pytests/geocoords/Makefile.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/pytests/geocoords/TestCSCart.py b/tests/pytests/geocoords/TestCSCart.py index f8dd2277..5ebefe46 100644 --- a/tests/pytests/geocoords/TestCSCart.py +++ b/tests/pytests/geocoords/TestCSCart.py @@ -4,7 +4,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/pytests/geocoords/TestCSGeo.py b/tests/pytests/geocoords/TestCSGeo.py index a5d64219..0af9e072 100644 --- a/tests/pytests/geocoords/TestCSGeo.py +++ b/tests/pytests/geocoords/TestCSGeo.py @@ -4,7 +4,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/pytests/geocoords/TestCSGeoLocal.py b/tests/pytests/geocoords/TestCSGeoLocal.py index 23c680e5..c1c072d7 100644 --- a/tests/pytests/geocoords/TestCSGeoLocal.py +++ b/tests/pytests/geocoords/TestCSGeoLocal.py @@ -4,7 +4,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/pytests/geocoords/TestConverter.py b/tests/pytests/geocoords/TestConverter.py index b58bffa6..37bc665b 100644 --- a/tests/pytests/geocoords/TestConverter.py +++ b/tests/pytests/geocoords/TestConverter.py @@ -4,7 +4,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/pytests/geocoords/test_geocoords.py b/tests/pytests/geocoords/test_geocoords.py index de5e006c..663ffb59 100755 --- a/tests/pytests/geocoords/test_geocoords.py +++ b/tests/pytests/geocoords/test_geocoords.py @@ -4,7 +4,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/pytests/spatialdb/Makefile.am b/tests/pytests/spatialdb/Makefile.am index 0fff660a..f2fd2591 100644 --- a/tests/pytests/spatialdb/Makefile.am +++ b/tests/pytests/spatialdb/Makefile.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/pytests/spatialdb/TestAnalyticDB.py b/tests/pytests/spatialdb/TestAnalyticDB.py index e6f77d29..5734330f 100644 --- a/tests/pytests/spatialdb/TestAnalyticDB.py +++ b/tests/pytests/spatialdb/TestAnalyticDB.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/pytests/spatialdb/TestCompositeDB.py b/tests/pytests/spatialdb/TestCompositeDB.py index 3aed4a67..57883b03 100644 --- a/tests/pytests/spatialdb/TestCompositeDB.py +++ b/tests/pytests/spatialdb/TestCompositeDB.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/pytests/spatialdb/TestGenSimpleDBApp.py b/tests/pytests/spatialdb/TestGenSimpleDBApp.py index ee35bb04..d54e4f9f 100644 --- a/tests/pytests/spatialdb/TestGenSimpleDBApp.py +++ b/tests/pytests/spatialdb/TestGenSimpleDBApp.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/pytests/spatialdb/TestGravityField.py b/tests/pytests/spatialdb/TestGravityField.py index 4ac776f0..a0393b78 100644 --- a/tests/pytests/spatialdb/TestGravityField.py +++ b/tests/pytests/spatialdb/TestGravityField.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/pytests/spatialdb/TestSCECCVMH.py.in b/tests/pytests/spatialdb/TestSCECCVMH.py.in index 2115021e..9ee90ecf 100644 --- a/tests/pytests/spatialdb/TestSCECCVMH.py.in +++ b/tests/pytests/spatialdb/TestSCECCVMH.py.in @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/pytests/spatialdb/TestSimpleDB.py b/tests/pytests/spatialdb/TestSimpleDB.py index 9a3c7517..03e76166 100644 --- a/tests/pytests/spatialdb/TestSimpleDB.py +++ b/tests/pytests/spatialdb/TestSimpleDB.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/pytests/spatialdb/TestSimpleGridDB.py b/tests/pytests/spatialdb/TestSimpleGridDB.py index 2caa93a5..08c05b9f 100644 --- a/tests/pytests/spatialdb/TestSimpleGridDB.py +++ b/tests/pytests/spatialdb/TestSimpleGridDB.py @@ -4,7 +4,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/pytests/spatialdb/TestSimpleIOAscii.py b/tests/pytests/spatialdb/TestSimpleIOAscii.py index 1b64633d..81fc3876 100644 --- a/tests/pytests/spatialdb/TestSimpleIOAscii.py +++ b/tests/pytests/spatialdb/TestSimpleIOAscii.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/pytests/spatialdb/TestTimeHistory.py b/tests/pytests/spatialdb/TestTimeHistory.py index ad61b823..ce64c74d 100644 --- a/tests/pytests/spatialdb/TestTimeHistory.py +++ b/tests/pytests/spatialdb/TestTimeHistory.py @@ -4,7 +4,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/pytests/spatialdb/TestTimeHistoryIO.py b/tests/pytests/spatialdb/TestTimeHistoryIO.py index b64d2048..2cd68bef 100644 --- a/tests/pytests/spatialdb/TestTimeHistoryIO.py +++ b/tests/pytests/spatialdb/TestTimeHistoryIO.py @@ -4,7 +4,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/pytests/spatialdb/TestUniformDB.py b/tests/pytests/spatialdb/TestUniformDB.py index ecaa552e..e0b0bd36 100644 --- a/tests/pytests/spatialdb/TestUniformDB.py +++ b/tests/pytests/spatialdb/TestUniformDB.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/pytests/spatialdb/TestUserFunctionDB.py b/tests/pytests/spatialdb/TestUserFunctionDB.py index 90f5b4ea..3c6bbe3f 100644 --- a/tests/pytests/spatialdb/TestUserFunctionDB.py +++ b/tests/pytests/spatialdb/TestUserFunctionDB.py @@ -4,7 +4,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/pytests/spatialdb/data/Makefile.am b/tests/pytests/spatialdb/data/Makefile.am index 199a6644..3e53c691 100644 --- a/tests/pytests/spatialdb/data/Makefile.am +++ b/tests/pytests/spatialdb/data/Makefile.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/pytests/spatialdb/test_sceccvmh.py b/tests/pytests/spatialdb/test_sceccvmh.py index 97713d85..80221b14 100755 --- a/tests/pytests/spatialdb/test_sceccvmh.py +++ b/tests/pytests/spatialdb/test_sceccvmh.py @@ -4,7 +4,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/pytests/spatialdb/test_spatialdb.py b/tests/pytests/spatialdb/test_spatialdb.py index cde46dc5..5976c2b6 100755 --- a/tests/pytests/spatialdb/test_spatialdb.py +++ b/tests/pytests/spatialdb/test_spatialdb.py @@ -4,7 +4,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/pytests/spatialdb/testgen1din2d.odb b/tests/pytests/spatialdb/testgen1din2d.odb index c153a8c9..322d6e74 100644 --- a/tests/pytests/spatialdb/testgen1din2d.odb +++ b/tests/pytests/spatialdb/testgen1din2d.odb @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/pytests/utils/Makefile.am b/tests/pytests/utils/Makefile.am index b50be42a..1860ddf2 100644 --- a/tests/pytests/utils/Makefile.am +++ b/tests/pytests/utils/Makefile.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/pytests/utils/TestSpatialdataVersion.py b/tests/pytests/utils/TestSpatialdataVersion.py index 96266c52..666d2417 100644 --- a/tests/pytests/utils/TestSpatialdataVersion.py +++ b/tests/pytests/utils/TestSpatialdataVersion.py @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/pytests/utils/test_utils.py b/tests/pytests/utils/test_utils.py index 984bb9af..be4b3230 100755 --- a/tests/pytests/utils/test_utils.py +++ b/tests/pytests/utils/test_utils.py @@ -4,7 +4,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/src/Makefile.am b/tests/src/Makefile.am index ab7b9070..a44526b8 100644 --- a/tests/src/Makefile.am +++ b/tests/src/Makefile.am @@ -2,7 +2,7 @@ # This code is part of SpatialData, developed through the Computational Infrastructure # for Geodynamics (https://github.com/geodynamics/spatialdata). # -# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +# Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. # All rights reserved. # # See https://mit-license.org/ and LICENSE.md and for license information. diff --git a/tests/src/driver_catch2.cc b/tests/src/driver_catch2.cc index cd339b89..e2dc0b59 100644 --- a/tests/src/driver_catch2.cc +++ b/tests/src/driver_catch2.cc @@ -2,7 +2,7 @@ // This code is part of SpatialData, developed through the Computational Infrastructure // for Geodynamics (https://github.com/geodynamics/spatialdata). // -// Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team. +// Copyright (c) 2010-2026, University of California, Davis and the SpatialData Development Team. // All rights reserved. // // See https://mit-license.org/ and LICENSE.md and for license information.