--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/atmospheric_lidar/systems/lilas/lilas.py Mon Nov 20 15:42:43 2017 +0200 @@ -0,0 +1,14 @@ +from ...licel import LicelLidarMeasurement +import lilas_netcdf_parameters + + +class LilasLidarMeasurement(LicelLidarMeasurement): + extra_netcdf_parameters = lilas_netcdf_parameters + + def get_PT(self): + ''' Sets the pressure and temperature at station level . + The results are stored in the info dictionary. + ''' + + self.info['Temperature'] = 25.0 + self.info['Pressure'] = 1020.0 \ No newline at end of file