From fc329d8c037f3df3a059ebb8c841ba483bc49bd4 Mon Sep 17 00:00:00 2001 From: Daniel Scheffler Date: Mon, 22 Jul 2019 18:41:09 +0200 Subject: [PATCH 1/2] Added license notes. Added funding note. Updated version info. Signed-off-by: Daniel Scheffler --- README.rst | 3 +++ py_tools_ds/__init__.py | 22 ++++++++++++++++ py_tools_ds/compatibility/__init__.py | 22 ++++++++++++++++ py_tools_ds/compatibility/gdal.py | 21 ++++++++++++++++ py_tools_ds/compatibility/gdalnumeric.py | 22 ++++++++++++++++ py_tools_ds/compatibility/python/__init__.py | 21 ++++++++++++++++ .../compatibility/python/exceptions.py | 22 ++++++++++++++++ py_tools_ds/compatibility/python/os.py | 22 ++++++++++++++++ py_tools_ds/compression/__init__.py | 22 ++++++++++++++++ py_tools_ds/compression/decompress.py | 21 ++++++++++++++++ py_tools_ds/convenience/__init__.py | 21 ++++++++++++++++ py_tools_ds/convenience/object_oriented.py | 22 ++++++++++++++++ py_tools_ds/db_tools/__init__.py | 22 ++++++++++++++++ py_tools_ds/db_tools/sql.py | 22 ++++++++++++++++ py_tools_ds/dtypes/__init__.py | 22 ++++++++++++++++ py_tools_ds/dtypes/conversion.py | 22 ++++++++++++++++ py_tools_ds/environment/__init__.py | 22 ++++++++++++++++ py_tools_ds/environment/gdal_env.py | 21 ++++++++++++++++ py_tools_ds/geo/__init__.py | 22 ++++++++++++++++ py_tools_ds/geo/coord_calc.py | 21 ++++++++++++++++ py_tools_ds/geo/coord_grid.py | 21 ++++++++++++++++ py_tools_ds/geo/coord_trafo.py | 21 ++++++++++++++++ py_tools_ds/geo/map_info.py | 22 ++++++++++++++++ py_tools_ds/geo/projection.py | 21 ++++++++++++++++ py_tools_ds/geo/raster/__init__.py | 22 ++++++++++++++++ py_tools_ds/geo/raster/conversion.py | 22 ++++++++++++++++ py_tools_ds/geo/raster/reproject.py | 22 ++++++++++++++++ py_tools_ds/geo/vector/__init__.py | 21 ++++++++++++++++ py_tools_ds/geo/vector/conversion.py | 21 ++++++++++++++++ py_tools_ds/geo/vector/geometry.py | 21 ++++++++++++++++ py_tools_ds/geo/vector/topology.py | 21 ++++++++++++++++ py_tools_ds/io/__init__.py | 22 ++++++++++++++++ py_tools_ds/io/pathgen.py | 21 ++++++++++++++++ py_tools_ds/io/raster/__init__.py | 22 ++++++++++++++++ py_tools_ds/io/raster/gdal.py | 22 ++++++++++++++++ py_tools_ds/io/raster/reader.py | 21 ++++++++++++++++ py_tools_ds/io/raster/writer.py | 22 ++++++++++++++++ py_tools_ds/numeric/__init__.py | 22 ++++++++++++++++ py_tools_ds/numeric/array.py | 22 ++++++++++++++++ py_tools_ds/numeric/numbers.py | 21 ++++++++++++++++ py_tools_ds/numeric/vector.py | 21 ++++++++++++++++ py_tools_ds/processing/__init__.py | 22 ++++++++++++++++ py_tools_ds/processing/progress_mon.py | 21 ++++++++++++++++ py_tools_ds/processing/shell.py | 21 ++++++++++++++++ py_tools_ds/similarity/__init__.py | 22 ++++++++++++++++ py_tools_ds/similarity/raster.py | 21 ++++++++++++++++ py_tools_ds/version.py | 25 +++++++++++++++++-- setup.py | 21 ++++++++++++++++ tests/__init__.py | 24 ++++++++++++++++++ tests/test_geo/__init__.py | 24 ++++++++++++++++++ tests/test_geo/test_coord_grid.py | 22 ++++++++++++++++ tests/test_geo/test_map_info.py | 22 ++++++++++++++++ tests/test_geo/test_projection.py | 22 ++++++++++++++++ tests/test_geo/test_raster/test_reproject.py | 21 ++++++++++++++++ tests/test_geo/test_vector/__init__.py | 24 ++++++++++++++++++ tests/test_geo/test_vector/test_geometry.py | 21 ++++++++++++++++ tests/test_io/__init__.py | 25 +++++++++++++++++++ tests/test_io/test_raster/__init__.py | 25 +++++++++++++++++++ tests/test_io/test_raster/test_gdal.py | 22 ++++++++++++++++ tests/test_numeric/__init__.py | 24 ++++++++++++++++++ tests/test_numeric/test_array.py | 21 ++++++++++++++++ tests/test_numeric/test_vector.py | 21 ++++++++++++++++ travis_pypi_setup.py | 22 ++++++++++++++++ 63 files changed, 1357 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 7d02f6f..64f3fec 100644 --- a/README.rst +++ b/README.rst @@ -82,6 +82,9 @@ Using conda_, the recommended approach is: Credits ------- +The py_tools_ds package was developed within the context of the GeoMultiSens project funded +by the German Federal Ministry of Education and Research (project grant code: 01 IS 14 010 A-C). + This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template. .. _Cookiecutter: https://github.com/audreyr/cookiecutter diff --git a/py_tools_ds/__init__.py b/py_tools_ds/__init__.py index b827e98..0d2ca78 100755 --- a/py_tools_ds/__init__.py +++ b/py_tools_ds/__init__.py @@ -1,4 +1,26 @@ # -*- coding: utf-8 -*- + +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + from __future__ import (division, print_function, absolute_import, unicode_literals) from .version import __version__, __versionalias__ # noqa (E402 + F401) diff --git a/py_tools_ds/compatibility/__init__.py b/py_tools_ds/compatibility/__init__.py index 09f4c5c..50d5ef4 100755 --- a/py_tools_ds/compatibility/__init__.py +++ b/py_tools_ds/compatibility/__init__.py @@ -1,2 +1,24 @@ # -*- coding: utf-8 -*- + +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + __author__ = 'Daniel Scheffler' diff --git a/py_tools_ds/compatibility/gdal.py b/py_tools_ds/compatibility/gdal.py index 00b7081..3dbba92 100755 --- a/py_tools_ds/compatibility/gdal.py +++ b/py_tools_ds/compatibility/gdal.py @@ -1,5 +1,26 @@ # -*- coding: utf-8 -*- +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + from __future__ import absolute_import import os diff --git a/py_tools_ds/compatibility/gdalnumeric.py b/py_tools_ds/compatibility/gdalnumeric.py index 3254c7d..56b7fdf 100755 --- a/py_tools_ds/compatibility/gdalnumeric.py +++ b/py_tools_ds/compatibility/gdalnumeric.py @@ -1,4 +1,26 @@ # -*- coding: utf-8 -*- + +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + __author__ = "Daniel Scheffler" try: diff --git a/py_tools_ds/compatibility/python/__init__.py b/py_tools_ds/compatibility/python/__init__.py index 221033a..50d5ef4 100644 --- a/py_tools_ds/compatibility/python/__init__.py +++ b/py_tools_ds/compatibility/python/__init__.py @@ -1,3 +1,24 @@ # -*- coding: utf-8 -*- +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + __author__ = 'Daniel Scheffler' diff --git a/py_tools_ds/compatibility/python/exceptions.py b/py_tools_ds/compatibility/python/exceptions.py index f110d63..700002c 100644 --- a/py_tools_ds/compatibility/python/exceptions.py +++ b/py_tools_ds/compatibility/python/exceptions.py @@ -1,4 +1,26 @@ # -*- coding: utf-8 -*- + +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + __author__ = "Daniel Scheffler" diff --git a/py_tools_ds/compatibility/python/os.py b/py_tools_ds/compatibility/python/os.py index f319ab7..7bde208 100644 --- a/py_tools_ds/compatibility/python/os.py +++ b/py_tools_ds/compatibility/python/os.py @@ -1,4 +1,26 @@ # -*- coding: utf-8 -*- + +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + from __future__ import absolute_import import os import errno diff --git a/py_tools_ds/compression/__init__.py b/py_tools_ds/compression/__init__.py index e69de29..dd618e7 100644 --- a/py_tools_ds/compression/__init__.py +++ b/py_tools_ds/compression/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 - + +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . diff --git a/py_tools_ds/compression/decompress.py b/py_tools_ds/compression/decompress.py index 51ed122..62285c4 100644 --- a/py_tools_ds/compression/decompress.py +++ b/py_tools_ds/compression/decompress.py @@ -1,5 +1,26 @@ # -*- coding: utf-8 -*- +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + import os import zipfile import tarfile diff --git a/py_tools_ds/convenience/__init__.py b/py_tools_ds/convenience/__init__.py index 77340f7..80805b6 100644 --- a/py_tools_ds/convenience/__init__.py +++ b/py_tools_ds/convenience/__init__.py @@ -1,3 +1,24 @@ # -*- coding: utf-8 -*- +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + __author__ = "Daniel Scheffler" diff --git a/py_tools_ds/convenience/object_oriented.py b/py_tools_ds/convenience/object_oriented.py index 7c6c1c8..23b3b54 100644 --- a/py_tools_ds/convenience/object_oriented.py +++ b/py_tools_ds/convenience/object_oriented.py @@ -1,4 +1,26 @@ # -*- coding: utf-8 -*- + +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + __author__ = 'Daniel Scheffler' diff --git a/py_tools_ds/db_tools/__init__.py b/py_tools_ds/db_tools/__init__.py index e69de29..dd618e7 100644 --- a/py_tools_ds/db_tools/__init__.py +++ b/py_tools_ds/db_tools/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 - + +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . diff --git a/py_tools_ds/db_tools/sql.py b/py_tools_ds/db_tools/sql.py index 8b89cc9..e04113b 100644 --- a/py_tools_ds/db_tools/sql.py +++ b/py_tools_ds/db_tools/sql.py @@ -1,4 +1,26 @@ # -*- coding: utf-8 -*- + +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + __author__ = 'Daniel Scheffler' import sqlite3 diff --git a/py_tools_ds/dtypes/__init__.py b/py_tools_ds/dtypes/__init__.py index 1235993..80805b6 100644 --- a/py_tools_ds/dtypes/__init__.py +++ b/py_tools_ds/dtypes/__init__.py @@ -1,2 +1,24 @@ # -*- coding: utf-8 -*- + +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + __author__ = "Daniel Scheffler" diff --git a/py_tools_ds/dtypes/conversion.py b/py_tools_ds/dtypes/conversion.py index 058b69b..4be57ee 100644 --- a/py_tools_ds/dtypes/conversion.py +++ b/py_tools_ds/dtypes/conversion.py @@ -1,4 +1,26 @@ # -*- coding: utf-8 -*- + +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + __author__ = "Daniel Scheffler" import datetime diff --git a/py_tools_ds/environment/__init__.py b/py_tools_ds/environment/__init__.py index e69de29..dd618e7 100644 --- a/py_tools_ds/environment/__init__.py +++ b/py_tools_ds/environment/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 - + +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . diff --git a/py_tools_ds/environment/gdal_env.py b/py_tools_ds/environment/gdal_env.py index 2346291..e49e550 100644 --- a/py_tools_ds/environment/gdal_env.py +++ b/py_tools_ds/environment/gdal_env.py @@ -1,5 +1,26 @@ # -*- coding: utf-8 -*- +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + import os import sys import re diff --git a/py_tools_ds/geo/__init__.py b/py_tools_ds/geo/__init__.py index 09f4c5c..50d5ef4 100644 --- a/py_tools_ds/geo/__init__.py +++ b/py_tools_ds/geo/__init__.py @@ -1,2 +1,24 @@ # -*- coding: utf-8 -*- + +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + __author__ = 'Daniel Scheffler' diff --git a/py_tools_ds/geo/coord_calc.py b/py_tools_ds/geo/coord_calc.py index 672b127..77ec2a3 100755 --- a/py_tools_ds/geo/coord_calc.py +++ b/py_tools_ds/geo/coord_calc.py @@ -1,5 +1,26 @@ # -*- coding: utf-8 -*- +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + import warnings from typing import Iterable, Tuple # noqa: F401 import numpy as np diff --git a/py_tools_ds/geo/coord_grid.py b/py_tools_ds/geo/coord_grid.py index a6aa125..e9f71fc 100644 --- a/py_tools_ds/geo/coord_grid.py +++ b/py_tools_ds/geo/coord_grid.py @@ -1,5 +1,26 @@ # -*- coding: utf-8 -*- +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + import numpy as np from shapely.geometry import box from shapely.geometry import Polygon # noqa F401 # flake8 issue diff --git a/py_tools_ds/geo/coord_trafo.py b/py_tools_ds/geo/coord_trafo.py index 92063dd..cbd604c 100755 --- a/py_tools_ds/geo/coord_trafo.py +++ b/py_tools_ds/geo/coord_trafo.py @@ -1,5 +1,26 @@ # -*- coding: utf-8 -*- +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + from functools import partial import warnings diff --git a/py_tools_ds/geo/map_info.py b/py_tools_ds/geo/map_info.py index 5c204d8..f2de046 100644 --- a/py_tools_ds/geo/map_info.py +++ b/py_tools_ds/geo/map_info.py @@ -1,4 +1,26 @@ # -*- coding: utf-8 -*- + +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + import re import math import warnings diff --git a/py_tools_ds/geo/projection.py b/py_tools_ds/geo/projection.py index 5e5ac61..378ef7e 100644 --- a/py_tools_ds/geo/projection.py +++ b/py_tools_ds/geo/projection.py @@ -1,5 +1,26 @@ # -*- coding: utf-8 -*- +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + import re import pyproj from typing import Union # noqa F401 # flake8 issue diff --git a/py_tools_ds/geo/raster/__init__.py b/py_tools_ds/geo/raster/__init__.py index 1235993..80805b6 100644 --- a/py_tools_ds/geo/raster/__init__.py +++ b/py_tools_ds/geo/raster/__init__.py @@ -1,2 +1,24 @@ # -*- coding: utf-8 -*- + +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + __author__ = "Daniel Scheffler" diff --git a/py_tools_ds/geo/raster/conversion.py b/py_tools_ds/geo/raster/conversion.py index ef9057a..8c6382e 100644 --- a/py_tools_ds/geo/raster/conversion.py +++ b/py_tools_ds/geo/raster/conversion.py @@ -1,4 +1,26 @@ # -*- coding: utf-8 -*- + +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + __author__ = "Daniel Scheffler" from six import PY3 diff --git a/py_tools_ds/geo/raster/reproject.py b/py_tools_ds/geo/raster/reproject.py index dabd802..3c8f2b8 100755 --- a/py_tools_ds/geo/raster/reproject.py +++ b/py_tools_ds/geo/raster/reproject.py @@ -1,4 +1,26 @@ # -*- coding: utf-8 -*- + +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + import numpy as np import warnings import multiprocessing diff --git a/py_tools_ds/geo/vector/__init__.py b/py_tools_ds/geo/vector/__init__.py index 77340f7..80805b6 100644 --- a/py_tools_ds/geo/vector/__init__.py +++ b/py_tools_ds/geo/vector/__init__.py @@ -1,3 +1,24 @@ # -*- coding: utf-8 -*- +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + __author__ = "Daniel Scheffler" diff --git a/py_tools_ds/geo/vector/conversion.py b/py_tools_ds/geo/vector/conversion.py index 08fbc3b..cacf66b 100644 --- a/py_tools_ds/geo/vector/conversion.py +++ b/py_tools_ds/geo/vector/conversion.py @@ -1,5 +1,26 @@ # -*- coding: utf-8 -*- +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + import numpy as np # custom diff --git a/py_tools_ds/geo/vector/geometry.py b/py_tools_ds/geo/vector/geometry.py index 735d37c..7905346 100644 --- a/py_tools_ds/geo/vector/geometry.py +++ b/py_tools_ds/geo/vector/geometry.py @@ -1,5 +1,26 @@ # -*- coding: utf-8 -*- +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + from shapely.geometry import Polygon, box import numpy as np diff --git a/py_tools_ds/geo/vector/topology.py b/py_tools_ds/geo/vector/topology.py index 4da71ec..bb78cf3 100644 --- a/py_tools_ds/geo/vector/topology.py +++ b/py_tools_ds/geo/vector/topology.py @@ -1,5 +1,26 @@ # -*- coding: utf-8 -*- +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + import math import warnings import numpy as np diff --git a/py_tools_ds/io/__init__.py b/py_tools_ds/io/__init__.py index 1235993..80805b6 100644 --- a/py_tools_ds/io/__init__.py +++ b/py_tools_ds/io/__init__.py @@ -1,2 +1,24 @@ # -*- coding: utf-8 -*- + +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + __author__ = "Daniel Scheffler" diff --git a/py_tools_ds/io/pathgen.py b/py_tools_ds/io/pathgen.py index ea0b0d2..e3fd16b 100644 --- a/py_tools_ds/io/pathgen.py +++ b/py_tools_ds/io/pathgen.py @@ -1,5 +1,26 @@ # -*- coding: utf-8 -*- +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + import tempfile import os diff --git a/py_tools_ds/io/raster/__init__.py b/py_tools_ds/io/raster/__init__.py index 1235993..80805b6 100644 --- a/py_tools_ds/io/raster/__init__.py +++ b/py_tools_ds/io/raster/__init__.py @@ -1,2 +1,24 @@ # -*- coding: utf-8 -*- + +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + __author__ = "Daniel Scheffler" diff --git a/py_tools_ds/io/raster/gdal.py b/py_tools_ds/io/raster/gdal.py index 291d61d..787af48 100755 --- a/py_tools_ds/io/raster/gdal.py +++ b/py_tools_ds/io/raster/gdal.py @@ -1,4 +1,26 @@ # -*- coding: utf-8 -*- + +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + __author__ = "Daniel Scheffler" import time diff --git a/py_tools_ds/io/raster/reader.py b/py_tools_ds/io/raster/reader.py index 77f6093..d805cb8 100644 --- a/py_tools_ds/io/raster/reader.py +++ b/py_tools_ds/io/raster/reader.py @@ -1,5 +1,26 @@ # -*- coding: utf-8 -*- +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + import multiprocessing import ctypes import numpy as np diff --git a/py_tools_ds/io/raster/writer.py b/py_tools_ds/io/raster/writer.py index 23add80..0926361 100644 --- a/py_tools_ds/io/raster/writer.py +++ b/py_tools_ds/io/raster/writer.py @@ -1,4 +1,26 @@ # -*- coding: utf-8 -*- + +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + import os import multiprocessing from spectral.io import envi diff --git a/py_tools_ds/numeric/__init__.py b/py_tools_ds/numeric/__init__.py index 1235993..80805b6 100644 --- a/py_tools_ds/numeric/__init__.py +++ b/py_tools_ds/numeric/__init__.py @@ -1,2 +1,24 @@ # -*- coding: utf-8 -*- + +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + __author__ = "Daniel Scheffler" diff --git a/py_tools_ds/numeric/array.py b/py_tools_ds/numeric/array.py index 7c15f33..0add264 100644 --- a/py_tools_ds/numeric/array.py +++ b/py_tools_ds/numeric/array.py @@ -1,4 +1,26 @@ # -*- coding: utf-8 -*- + +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + __author__ = "Daniel Scheffler" import numpy as np diff --git a/py_tools_ds/numeric/numbers.py b/py_tools_ds/numeric/numbers.py index 6b7622f..b9ea6e4 100644 --- a/py_tools_ds/numeric/numbers.py +++ b/py_tools_ds/numeric/numbers.py @@ -1,5 +1,26 @@ # -*- coding: utf-8 -*- +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + __author__ = 'Daniel Scheffler' diff --git a/py_tools_ds/numeric/vector.py b/py_tools_ds/numeric/vector.py index 976367c..281c1c8 100644 --- a/py_tools_ds/numeric/vector.py +++ b/py_tools_ds/numeric/vector.py @@ -1,5 +1,26 @@ # -*- coding: utf-8 -*- +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + import collections import numpy as np import bisect diff --git a/py_tools_ds/processing/__init__.py b/py_tools_ds/processing/__init__.py index 1235993..80805b6 100644 --- a/py_tools_ds/processing/__init__.py +++ b/py_tools_ds/processing/__init__.py @@ -1,2 +1,24 @@ # -*- coding: utf-8 -*- + +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + __author__ = "Daniel Scheffler" diff --git a/py_tools_ds/processing/progress_mon.py b/py_tools_ds/processing/progress_mon.py index 1d18a71..d93f421 100644 --- a/py_tools_ds/processing/progress_mon.py +++ b/py_tools_ds/processing/progress_mon.py @@ -1,5 +1,26 @@ # -*- coding: utf-8 -*- +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + import sys from time import time from datetime import timedelta diff --git a/py_tools_ds/processing/shell.py b/py_tools_ds/processing/shell.py index 62a29f5..238a07e 100755 --- a/py_tools_ds/processing/shell.py +++ b/py_tools_ds/processing/shell.py @@ -1,5 +1,26 @@ # -*- coding: utf-8 -*- +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + import shlex from subprocess import PIPE, Popen diff --git a/py_tools_ds/similarity/__init__.py b/py_tools_ds/similarity/__init__.py index 1235993..80805b6 100644 --- a/py_tools_ds/similarity/__init__.py +++ b/py_tools_ds/similarity/__init__.py @@ -1,2 +1,24 @@ # -*- coding: utf-8 -*- + +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + __author__ = "Daniel Scheffler" diff --git a/py_tools_ds/similarity/raster.py b/py_tools_ds/similarity/raster.py index 639b16a..35c74f1 100644 --- a/py_tools_ds/similarity/raster.py +++ b/py_tools_ds/similarity/raster.py @@ -1,5 +1,26 @@ # -*- coding: utf-8 -*- +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + import numpy as np from skimage.measure import compare_ssim as ssim diff --git a/py_tools_ds/version.py b/py_tools_ds/version.py index 1ba72bf..001c919 100644 --- a/py_tools_ds/version.py +++ b/py_tools_ds/version.py @@ -1,2 +1,23 @@ -__version__ = '0.14.17' -__versionalias__ = '20190322_03' +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + +__version__ = '0.14.18' +__versionalias__ = '20190722_01' diff --git a/setup.py b/setup.py index 4d0acbb..7714c39 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,27 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + """The setup script.""" from setuptools import setup, find_packages diff --git a/tests/__init__.py b/tests/__init__.py index 40a96af..0da823f 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1 +1,25 @@ +#!/usr/bin/env python # -*- coding: utf-8 -*- + +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + +__author__ = "Daniel Scheffler" diff --git a/tests/test_geo/__init__.py b/tests/test_geo/__init__.py index 40a96af..0da823f 100644 --- a/tests/test_geo/__init__.py +++ b/tests/test_geo/__init__.py @@ -1 +1,25 @@ +#!/usr/bin/env python # -*- coding: utf-8 -*- + +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + +__author__ = "Daniel Scheffler" diff --git a/tests/test_geo/test_coord_grid.py b/tests/test_geo/test_coord_grid.py index ce2059b..e338650 100644 --- a/tests/test_geo/test_coord_grid.py +++ b/tests/test_geo/test_coord_grid.py @@ -1,6 +1,28 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + + """ test_coord_grid --------------- diff --git a/tests/test_geo/test_map_info.py b/tests/test_geo/test_map_info.py index 5f4db05..e7ef04d 100644 --- a/tests/test_geo/test_map_info.py +++ b/tests/test_geo/test_map_info.py @@ -1,6 +1,28 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + + """ test_map_info ------------- diff --git a/tests/test_geo/test_projection.py b/tests/test_geo/test_projection.py index 496cd18..46c21b9 100644 --- a/tests/test_geo/test_projection.py +++ b/tests/test_geo/test_projection.py @@ -1,6 +1,28 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + + """ test_projection ---------------------------------- diff --git a/tests/test_geo/test_raster/test_reproject.py b/tests/test_geo/test_raster/test_reproject.py index ed9786d..f86e326 100644 --- a/tests/test_geo/test_raster/test_reproject.py +++ b/tests/test_geo/test_raster/test_reproject.py @@ -1,6 +1,27 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + """ test_reproject -------------- diff --git a/tests/test_geo/test_vector/__init__.py b/tests/test_geo/test_vector/__init__.py index e69de29..80805b6 100644 --- a/tests/test_geo/test_vector/__init__.py +++ b/tests/test_geo/test_vector/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- + +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + +__author__ = "Daniel Scheffler" diff --git a/tests/test_geo/test_vector/test_geometry.py b/tests/test_geo/test_vector/test_geometry.py index d2a380c..045ca83 100644 --- a/tests/test_geo/test_vector/test_geometry.py +++ b/tests/test_geo/test_vector/test_geometry.py @@ -1,6 +1,27 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + """ test_geometry --------------- diff --git a/tests/test_io/__init__.py b/tests/test_io/__init__.py index e69de29..0da823f 100644 --- a/tests/test_io/__init__.py +++ b/tests/test_io/__init__.py @@ -0,0 +1,25 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + +__author__ = "Daniel Scheffler" diff --git a/tests/test_io/test_raster/__init__.py b/tests/test_io/test_raster/__init__.py index e69de29..0da823f 100644 --- a/tests/test_io/test_raster/__init__.py +++ b/tests/test_io/test_raster/__init__.py @@ -0,0 +1,25 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + +__author__ = "Daniel Scheffler" diff --git a/tests/test_io/test_raster/test_gdal.py b/tests/test_io/test_raster/test_gdal.py index a298faa..b37c17b 100644 --- a/tests/test_io/test_raster/test_gdal.py +++ b/tests/test_io/test_raster/test_gdal.py @@ -1,6 +1,28 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + + """ test_gdal --------- diff --git a/tests/test_numeric/__init__.py b/tests/test_numeric/__init__.py index 40a96af..0da823f 100644 --- a/tests/test_numeric/__init__.py +++ b/tests/test_numeric/__init__.py @@ -1 +1,25 @@ +#!/usr/bin/env python # -*- coding: utf-8 -*- + +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + +__author__ = "Daniel Scheffler" diff --git a/tests/test_numeric/test_array.py b/tests/test_numeric/test_array.py index 3131509..5b595b4 100644 --- a/tests/test_numeric/test_array.py +++ b/tests/test_numeric/test_array.py @@ -1,6 +1,27 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + """ test_array ---------- diff --git a/tests/test_numeric/test_vector.py b/tests/test_numeric/test_vector.py index 85eda96..ef586ec 100644 --- a/tests/test_numeric/test_vector.py +++ b/tests/test_numeric/test_vector.py @@ -1,6 +1,27 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + """ test_vector ----------_ diff --git a/travis_pypi_setup.py b/travis_pypi_setup.py index fe79463..0842eab 100644 --- a/travis_pypi_setup.py +++ b/travis_pypi_setup.py @@ -1,5 +1,27 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- + +# py_tools_ds +# +# Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) +# +# This software was developed within the context of the GeoMultiSens project funded +# by the German Federal Ministry of Education and Research +# (project grant code: 01 IS 14 010 A-C). +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with this program. If not, see . + """Update encrypted deploy password in Travis config file """ -- GitLab From 22029a7144cad654b2a9a582e524fd5277fcd459 Mon Sep 17 00:00:00 2001 From: Daniel Scheffler Date: Mon, 22 Jul 2019 19:39:04 +0200 Subject: [PATCH 2/2] Fixed merge error. Signed-off-by: Daniel Scheffler --- py_tools_ds/version.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/py_tools_ds/version.py b/py_tools_ds/version.py index 71c98e9..94b5920 100644 --- a/py_tools_ds/version.py +++ b/py_tools_ds/version.py @@ -1,4 +1,3 @@ -<<<<<<< py_tools_ds/version.py # py_tools_ds # # Copyright (C) 2019 Daniel Scheffler (GFZ Potsdam, daniel.scheffler@gfz-potsdam.de) @@ -22,7 +21,3 @@ __version__ = '0.14.19' __versionalias__ = '20190722_01' -======= -__version__ = '0.14.18' -__versionalias__ = '20190614_01' ->>>>>>> py_tools_ds/version.py -- GitLab