sciapy.level2   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 18
ccs 4
cts 4
cp 1
rs 10
c 0
b 0
f 0
wmc 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