# HG changeset patch # User Ioannis # Date 1465308412 -10800 # Node ID 9d1b212552b3c603a714bc4cebe7632de9bb126e # Parent 1b04f17ab7b99b69925fd2149371205f2aa7b256 Lilas sytem from Lille diff -r 1b04f17ab7b9 -r 9d1b212552b3 atmospheric_lidar/lilas.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/atmospheric_lidar/lilas.py Tue Jun 07 17:06:52 2016 +0300 @@ -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 diff -r 1b04f17ab7b9 -r 9d1b212552b3 atmospheric_lidar/lilas_netcdf_parameters.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/atmospheric_lidar/lilas_netcdf_parameters.py Tue Jun 07 17:06:52 2016 +0300 @@ -0,0 +1,101 @@ +general_parameters = \ + {'System': '\'Lilas\'', + 'Laser_Pointing_Angle': 0, + 'Molecular_Calc': 0, # Use US standard atmosphere + 'Latitude_degrees_north': 50.63, + 'Longitude_degrees_east': 3.07, + 'Altitude_meter_asl': 0.4} + +channel_parameters = \ + {'00355.p_an': {'channel_ID': 41, + 'Background_Low': 19000, + 'Background_High': 20000, + 'Laser_Shots': 1000, + 'LR_Input': 1, + 'DAQ_Range': 500.0, + 'Depolarization_Factor': 0,}, + '00355.p_ph': {'channel_ID': 42, + 'Background_Low': 19000, + 'Background_High': 20000, + 'Laser_Shots': 1000, + 'LR_Input': 1, + 'DAQ_Range': 0, + 'Depolarization_Factor': 0,}, + '00355.s_an': {'channel_ID': 41, + 'Background_Low': 19000, + 'Background_High': 20000, + 'Laser_Shots': 1000, + 'LR_Input': 1, + 'DAQ_Range': 500.0, + 'Depolarization_Factor': 0,}, + '00355.s_ph': {'channel_ID': 42, + 'Background_Low': 19000, + 'Background_High': 20000, + 'Laser_Shots': 1000, + 'LR_Input': 1, + 'DAQ_Range': 0, + 'Depolarization_Factor': 0,}, + '00532.p_an': {'channel_ID': 43, + 'Background_Low': 19000, + 'Background_High': 20000, + 'Laser_Shots': 1000, + 'LR_Input': 1, + 'DAQ_Range': 500.0, + 'Depolarization_Factor': 0,}, + '00532.p_ph': {'channel_ID': 44, + 'Background_Low': 19000, + 'Background_High': 20000, + 'Laser_Shots': 1000, + 'LR_Input': 1, + 'DAQ_Range': 0, + 'Depolarization_Factor': 0,}, + '00532.s_an': {'channel_ID': 43, + 'Background_Low': 19000, + 'Background_High': 20000, + 'Laser_Shots': 1000, + 'LR_Input': 1, + 'DAQ_Range': 500.0, + 'Depolarization_Factor': 0,}, + '00532.s_ph': {'channel_ID': 44, + 'Background_Low': 19000, + 'Background_High': 20000, + 'Laser_Shots': 1000, + 'LR_Input': 1, + 'DAQ_Range': 0, + 'Depolarization_Factor': 0,}, + '01064.o_an': {'channel_ID': 45, + 'Background_Low': 19000, + 'Background_High': 20000, + 'Laser_Shots': 1000, + 'LR_Input': 1, + 'DAQ_Range': 500.0, + 'Depolarization_Factor': 0,}, + '00387.o_an': {'channel_ID': 45, + 'Background_Low': 19000, + 'Background_High': 20000, + 'Laser_Shots': 1000, + 'LR_Input': 1, + 'DAQ_Range': 500.0, + 'Depolarization_Factor': 0,}, + '00387.o_ph': {'channel_ID': 46, + 'Background_Low': 19000, + 'Background_High': 20000, + 'Laser_Shots': 1000, + 'LR_Input': 1, + 'DAQ_Range': 0, + 'Depolarization_Factor': 0,}, + '00408.o_ph': {'channel_ID': 444, + 'Background_Low': 19000, + 'Background_High': 20000, + 'Laser_Shots': 1000, + 'LR_Input': 1, + 'DAQ_Range': 0, + 'Depolarization_Factor': 0,}, + '00607.o_ph': {'channel_ID': 47, + 'Background_Low': 19000, + 'Background_High': 20000, + 'Laser_Shots': 1000, + 'LR_Input': 1, + 'DAQ_Range': 0, + 'Depolarization_Factor': 0,}, + }