lidarpy

The top of the lidar module that is compatible (at least) with GFAT lidars: "Veleta", "Mulhacén" and "Alhambra"

 1from . import (
 2    atmo,
 3    depolarization,
 4    general_utils,
 5    nc_convert,
 6    plot,
 7    preprocessing,
 8    retrieval,
 9    scc,
10    utils,
11)
12
13__version__ = "0.1.2"
14
15__all__ = [
16    "preprocessing",
17    "retrieval",
18    "scc",
19    "depolarization",
20    "plot",
21    "utils",
22    "nc_convert",
23    "atmo",
24    "general_utils",
25]
26
27
28__doc__ = """
29    The top of the lidar module that is compatible (at least) with GFAT lidars: "Veleta", "Mulhacén" and "Alhambra"
30"""