Skip to content

Commit de2d5ea

Browse files
authored
Merge pull request #157 from sfinkens/relicense
Relicense to Apache-2.0
2 parents 798471b + 40011da commit de2d5ea

35 files changed

Lines changed: 225 additions & 1401 deletions

LICENSE.txt

Lines changed: 201 additions & 674 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,27 @@
1-
pygac
2-
=====
1+
# Pygac
32

43
[![Build](https://github.com/pytroll/pygac/actions/workflows/ci.yaml/badge.svg)](https://github.com/pytroll/pygac/actions/workflows/ci.yaml)
54
[![Coverage](https://codecov.io/gh/pytroll/pygac/branch/main/graph/badge.svg?token=DQMgf2LxuM)](https://codecov.io/gh/pytroll/pygac)
65
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.5832775.svg)](https://doi.org/10.5281/zenodo.5832775)
76

87

9-
Pygac is a Python package to read, calibrate and navigate data from the AVHRR
8+
Pygac is a Python package to read, calibrate and navigate data from the AVHRR
109
instrument onboard NOAA and MetOp satellites in GAC and LAC format.
1110

1211
The documentation is available at https://pygac.readthedocs.io/.
12+
13+
## License
14+
15+
Copyright 2014 Pygac developers
16+
17+
Licensed under the Apache License, Version 2.0 (the "License");
18+
you may not use this file except in compliance with the License.
19+
You may obtain a copy of the License at
20+
21+
http://www.apache.org/licenses/LICENSE-2.0
22+
23+
Unless required by applicable law or agreed to in writing, software
24+
distributed under the License is distributed on an "AS IS" BASIS,
25+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
26+
See the License for the specific language governing permissions and
27+
limitations under the License.

pygac/__init__.py

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,3 @@
1-
#!/usr/bin/env python
2-
# -*- coding: utf-8 -*-
3-
4-
# Copyright (c) 2014 Adam.Dybbroe
5-
6-
# Author(s):
7-
8-
# Adam.Dybbroe <a000680@c14526.ad.smhi.se>
9-
# Carlos Horn <carlos.horn@external.eumetsat.int>
10-
11-
# This program is free software: you can redistribute it and/or modify
12-
# it under the terms of the GNU General Public License as published by
13-
# the Free Software Foundation, either version 3 of the License, or
14-
# (at your option) any later version.
15-
16-
# This program is distributed in the hope that it will be useful,
17-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
18-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19-
# GNU General Public License for more details.
20-
21-
# You should have received a copy of the GNU General Public License
22-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
23-
241
try:
252
from pygac.version import version as __version__ # noqa
263
except ModuleNotFoundError:

pygac/calibration/noaa.py

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,3 @@
1-
#!/usr/bin/env python
2-
3-
# Copyright (c) 2014-2015, 2019 Pytroll Developers
4-
5-
# Author(s):
6-
7-
# Martin Raspaud <martin.raspaud@smhi.se>
8-
# Abhay Devasthale <abhay.devasthale@smhi.se>
9-
# Carlos Horn <carlos.horn@external.eumetsat.int>
10-
11-
# This program is free software: you can redistribute it and/or modify
12-
# it under the terms of the GNU General Public License as published by
13-
# the Free Software Foundation, either version 3 of the License, or
14-
# (at your option) any later version.
15-
16-
# This program is distributed in the hope that it will be useful,
17-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
18-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19-
# GNU General Public License for more details.
20-
21-
# You should have received a copy of the GNU General Public License
22-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
23-
241
"""Calibration coefficients and generic calibration functions
252
"""
263
from __future__ import division

pygac/clock_offsets_converter.py

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,3 @@
1-
#!/usr/bin/env python
2-
# -*- coding: utf-8 -*-
3-
4-
# Copyright (c) 2014 Martin Raspaud
5-
6-
# Author(s):
7-
8-
# Martin Raspaud <martin.raspaud@smhi.se>
9-
10-
# This program is free software: you can redistribute it and/or modify
11-
# it under the terms of the GNU General Public License as published by
12-
# the Free Software Foundation, either version 3 of the License, or
13-
# (at your option) any later version.
14-
15-
# This program is distributed in the hope that it will be useful,
16-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
17-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18-
# GNU General Public License for more details.
19-
20-
# You should have received a copy of the GNU General Public License
21-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
22-
231
"""Converts text to python
242
"""
253
from datetime import datetime

pygac/configuration.py

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,3 @@
1-
#!/usr/bin/env python
2-
# -*- coding: utf-8 -*-
3-
4-
# Copyright (c) 2020 Pygac Developers
5-
6-
# Author(s):
7-
8-
# Carlos Horn <carlos.horn@external.eumetsat.int>
9-
10-
# This program is free software: you can redistribute it and/or modify
11-
# it under the terms of the GNU General Public License as published by
12-
# the Free Software Foundation, either version 3 of the License, or
13-
# (at your option) any later version.
14-
15-
# This program is distributed in the hope that it will be useful,
16-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
17-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18-
# GNU General Public License for more details.
19-
20-
# You should have received a copy of the GNU General Public License
21-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
22-
231
"""Module configuration class.
242
253
Read and manage module configuration.

pygac/correct_tsm_issue.py

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,3 @@
1-
#!/usr/bin/env python
2-
# -*- coding: utf-8 -*-
3-
4-
# Author(s):
5-
6-
# Stephan Finkensieper <stephan.finkensieper@dwd.dwd>
7-
# Cornelia Schlundt <cornelia.schlundt@dwd.de>
8-
9-
# This program is free software: you can redistribute it and/or modify
10-
# it under the terms of the GNU General Public License as published by
11-
# the Free Software Foundation, either version 3 of the License, or
12-
# (at your option) any later version.
13-
14-
# This program is distributed in the hope that it will be useful,
15-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
16-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17-
# GNU General Public License for more details.
18-
19-
# You should have received a copy of the GNU General Public License
20-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
21-
221
"""NOAA-14, 15 and 16 suffer from temporary scan motor issue i.e. parts of
232
an orbit contain corrupt data. This module identifies affected pixels and flags
243
them with fill values."""

pygac/gac_io.py

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,3 @@
1-
#!/usr/bin/env python
2-
3-
# Copyright (c) 2012, 2014 Abhay Devasthale
4-
5-
# Author(s):
6-
7-
# Abhay Devasthale <abhay.devasthale@smhi.se>
8-
# Adam Dybbroe <adam.dybbroe@smhi.se>
9-
# Sara Hornquist <sara.hornquist@smhi.se>
10-
# Martin Raspaud <martin.raspaud@smhi.se>
11-
# Carlos Horn <carlos.horn@external.eumetsat.int>
12-
13-
# This program is free software: you can redistribute it and/or modify
14-
# it under the terms of the GNU General Public License as published by
15-
# the Free Software Foundation, either version 3 of the License, or
16-
# (at your option) any later version.
17-
18-
# This program is distributed in the hope that it will be useful,
19-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
20-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21-
# GNU General Public License for more details.
22-
23-
# You should have received a copy of the GNU General Public License
24-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
25-
26-
271
import calendar
282
import datetime
293
import logging

pygac/gac_klm.py

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,3 @@
1-
#!/usr/bin/env python
2-
# -*- coding: utf-8 -*-
3-
4-
# Copyright (c) 2014 Abhay Devasthale and Martin Raspaud
5-
6-
# Author(s):
7-
8-
# Abhay Devasthale <abhay.devasthale@smhi.se>
9-
# Martin Raspaud <martin.raspaud@smhi.se>
10-
# Adam Dybbroe <adam.dybbroe@smhi.se>
11-
12-
# This program is free software: you can redistribute it and/or modify
13-
# it under the terms of the GNU General Public License as published by
14-
# the Free Software Foundation, either version 3 of the License, or
15-
# (at your option) any later version.
16-
17-
# This program is distributed in the hope that it will be useful,
18-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
19-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20-
# GNU General Public License for more details.
21-
22-
# You should have received a copy of the GNU General Public License
23-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
24-
251
"""Reader for GAC KLM data."""
262

273
from __future__ import print_function

pygac/gac_pod.py

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,3 @@
1-
#!/usr/bin/python
2-
# Copyright (c) 2014-2016.
3-
#
4-
5-
# Author(s):
6-
7-
# Abhay Devasthale <abhay.devasthale@smhi.se>
8-
# Adam Dybbroe <adam.dybbroe@smhi.se>
9-
# Sajid Pareeth <sajid.pareeth@fmach.it>
10-
# Martin Raspaud <martin.raspaud@smhi.se>
11-
12-
# This work was done in the framework of ESA-CCI-Clouds phase I
13-
14-
15-
# This program is free software: you can redistribute it and/or modify
16-
# it under the terms of the GNU General Public License as published by
17-
# the Free Software Foundation, either version 3 of the License, or
18-
# (at your option) any later version.
19-
20-
# This program is distributed in the hope that it will be useful,
21-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
22-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23-
# GNU General Public License for more details.
24-
25-
# You should have received a copy of the GNU General Public License
26-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
271
"""Reader for GAC POD data."""
282

293
import logging

0 commit comments

Comments
 (0)