diff options
Diffstat (limited to 'webmap-download')
-rwxr-xr-x | webmap-download | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/webmap-download b/webmap-download index fb52d7d..7720e79 100755 --- a/webmap-download +++ b/webmap-download @@ -1,5 +1,23 @@ #!/usr/bin/python3 +#---------------------------------------------------------------------- +# Backend utilities for the Klimatanalys Norr project (download common layers) +# Copyright © 2024 Guilhem Moulin <info@guilhem.se> +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +#---------------------------------------------------------------------- + from os import O_RDONLY, O_WRONLY, O_CREAT, O_TRUNC, O_CLOEXEC, O_PATH, O_DIRECTORY, O_TMPFILE import os, sys from fcntl import flock, LOCK_EX |