Coverage for wrainfo/__init__.py: 100%
12 statements
« prev ^ index » next coverage.py v6.5.0, created at 2022-10-18 12:40 +0000
« prev ^ index » next coverage.py v6.5.0, created at 2022-10-18 12:40 +0000
1"""Top-level package for WRaINfo."""
3# WRaINfo, Is a software to process FURUNO weather radar data.
4#
5# Copyright (c) 2022, FernLab (GFZ Potsdam, fernlab@gfz-potsdam.de)
6#
7# This software was developed within the context of the RaINfo ("Potential use of
8# high resolution weather data in agriculture") project of FernLab funded by
9# the Impulse and Networking Fund of the Helmholtz Association.
10#
11# Licensed under the Apache License, Version 2.0 (the "License");
12# you may not use this file except in compliance with the License.
13#
14# You may obtain a copy of the License at
15# http://www.apache.org/licenses/LICENSE-2.0
16#
17# Unless required by applicable law or agreed to in writing, software
18# distributed under the License is distributed on an "AS IS" BASIS,
19# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20# See the License for the specific language governing permissions and
21# limitations under the License.
23# package owner
24__author__ = """FernLab"""
25__email__ = 'fernlab@gfz-potsdam.de'
27# import version
28from .version import __version__, __versionalias__ # noqa (E402 + F401)
30# import subpackages
31from wrainfo import attenuation_corr
32from wrainfo import clutter
33from wrainfo import compression
34from wrainfo import error_flist
35from wrainfo import geometry
36from wrainfo import precipitation
37from wrainfo import process_chains
38from wrainfo import reader
40__all__ = [
41 'attenuation_corr',
42 'clutter',
43 'compression',
44 'error_flist',
45 'geometry',
46 'precipitation',
47 'process_chains',
48 'reader'
49]