6 import numpy as np |
6 import numpy as np |
7 import matplotlib as mpl |
7 import matplotlib as mpl |
8 from matplotlib import pyplot as plt |
8 from matplotlib import pyplot as plt |
9 import netCDF4 as netcdf |
9 import netCDF4 as netcdf |
10 |
10 |
11 # CNR-IMAA specific imports |
|
12 import milos |
|
13 |
|
14 |
|
15 netcdf_format = 'NETCDF3_CLASSIC' # choose one of 'NETCDF3_CLASSIC', 'NETCDF3_64BIT', 'NETCDF4_CLASSIC' and 'NETCDF4' |
11 netcdf_format = 'NETCDF3_CLASSIC' # choose one of 'NETCDF3_CLASSIC', 'NETCDF3_64BIT', 'NETCDF4_CLASSIC' and 'NETCDF4' |
|
12 |
16 |
13 |
17 class BaseLidarMeasurement(): |
14 class BaseLidarMeasurement(): |
18 """ This is the general measurement object. |
15 """ This is the general measurement object. |
19 It is meant to become a general measurement object |
16 It is meant to become a general measurement object |
20 independent of the input files. |
17 independent of the input files. |