| Total Complexity | 0 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | # Copyright (c) 2014-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 1c spectra module |
|
| 9 | |||
| 10 | This module contains the class for SCIAMACHY level 1c spectra. |
||
| 11 | It supports limb and solar specra. |
||
| 12 | """ |
||
| 13 | |||
| 14 | 1 | __all__ = ["scia_limb_point", "scia_limb_scan", "scia_solar"] |
|
| 15 | |||
| 16 | 1 | from .scia_limb import scia_limb_point, scia_limb_scan |
|
| 17 | 1 | from .scia_solar import scia_solar |
|
| 18 | |||
| 19 | # un-clutter the namespace |
||
| 20 | 1 | del scia_limb_hdf5 |
|
|
|
|||
| 21 | 1 | del scia_limb_mpl |
|
| 22 | 1 | del scia_limb_nc |
|
| 23 | del scia_limb_txt |
||
| 24 |