Total Complexity | 0 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | # Copyright (c) 2016-2018 Stefan Bender |
||
2 | # |
||
3 | # This module is part of sciapy. |
||
4 | # sciapy is free software: you can redistribute it or modify |
||
5 | # it under the terms of the GNU General Public License as published |
||
6 | # by the Free Software Foundation, version 2. |
||
7 | # See accompanying LICENSE file or http://www.gnu.org/licenses/gpl-2.0.html. |
||
8 | 1 | """SCIAMACHY level 2 processing |
|
9 | |||
10 | This module contains functions to process |
||
11 | SCIAMACHY level 2 number density data (only NO for now). |
||
12 | """ |
||
13 | |||
14 | 1 | from . import binning |
|
15 | 1 | from . import density |
|
16 | |||
17 | __all__ = ["binning", "density"] |
||
18 |