sciapy.level1c   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 8
dl 0
loc 24
ccs 8
cts 8
cp 1
rs 10
c 0
b 0
f 0
wmc 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
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable scia_limb_hdf5 does not seem to be defined.
Loading history...
21 1
del scia_limb_mpl
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable scia_limb_mpl does not seem to be defined.
Loading history...
22 1
del scia_limb_nc
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable scia_limb_nc does not seem to be defined.
Loading history...
23
del scia_limb_txt
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable scia_limb_txt does not seem to be defined.
Loading history...
24