# HG changeset patch # User Iannis # Date 1403103406 -10800 # Node ID 563705a26f85f2072972f3ec1a3421c083819cbb # Parent b148076f7295fd5c5628bea3dfe5c7dc93cf460d Athens files diff -r b148076f7295 -r 563705a26f85 aias_netcdf_parameters.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/aias_netcdf_parameters.py Wed Jun 18 17:56:46 2014 +0300 @@ -0,0 +1,38 @@ +general_parameters = \ +{'System': '\'AIAS\'', + 'Laser_Pointing_Angle': 0, + 'Molecular_Calc': 0, + 'Latitude_degrees_north': 36.992, + 'Longitude_degrees_east': 21.649, + 'Altitude_meter_asl': 3} + +channel_parameters = \ +{'00532.p_an': {'channel_ID': 327, + 'Background_Low': 19000, + 'Background_High': 20000, + 'Laser_Shots': 1000, + 'LR_Input':1, + 'DAQ_Range':500.0, + 'Depolarization_Factor': 0,}, + '00532.p_ph': {'channel_ID': 328, + 'Background_Low': 19000, + 'Background_High': 20000, + 'Laser_Shots': 1000, + 'LR_Input':1, + 'DAQ_Range':0, + 'Depolarization_Factor': 0.06,}, + '00532.s_an': {'channel_ID': 329, + 'Background_Low': 19000, + 'Background_High': 20000, + 'Laser_Shots': 1000, + 'LR_Input':1, + 'DAQ_Range':500.0, + 'Depolarization_Factor': 0,}, + '00532.s_ph': {'channel_ID': 330, + 'Background_Low': 19000, + 'Background_High': 20000, + 'Laser_Shots': 1000, + 'LR_Input':1, + 'DAQ_Range':0, + 'Depolarization_Factor': 0.06,}, + } \ No newline at end of file diff -r b148076f7295 -r 563705a26f85 eole.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eole.py Wed Jun 18 17:56:46 2014 +0300 @@ -0,0 +1,19 @@ +from licel import LicelLidarMeasurement +import eole_netcdf_parameters + + +class EoleLidarMeasurement(LicelLidarMeasurement): + extra_netcdf_parameters = eole_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 + + + #def save_netcdf_extra(self, f): + # CHARMEX CLOUD MIN ALTITUDE + # temp_v=f.createVariable('max_altitude_m_asl', 'd', ('time', 'nb_of_time_scales')) diff -r b148076f7295 -r 563705a26f85 eole_netcdf_parameters.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eole_netcdf_parameters.py Wed Jun 18 17:56:46 2014 +0300 @@ -0,0 +1,67 @@ +general_parameters = \ +{'System': '\'EOLE\'', + 'Laser_Pointing_Angle': 0, + 'Molecular_Calc': 0, + 'Latitude_degrees_north': 37.96, + 'Longitude_degrees_east': 23.78, + 'Altitude_meter_asl': 212.0} + +channel_parameters = \ +{'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,}, + '00355.o_an': {'channel_ID': 41, + 'Background_Low': 19000, + 'Background_High': 20000, + 'Laser_Shots': 1000, + 'LR_Input':1, + 'DAQ_Range':500.0, + 'Depolarization_Factor': 0,}, + '00355.o_ph': {'channel_ID': 42, + 'Background_Low': 19000, + 'Background_High': 20000, + 'Laser_Shots': 1000, + 'LR_Input':1, + 'DAQ_Range':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,}, + '00532.o_an': {'channel_ID': 43, + 'Background_Low': 19000, + 'Background_High': 20000, + 'Laser_Shots': 1000, + 'LR_Input':1, + 'DAQ_Range':500.0, + 'Depolarization_Factor': 0,}, + '00532.o_ph': {'channel_ID': 44, + '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,}, + '00407.o_ph': {'channel_ID': 444, + 'Background_Low': 19000, + 'Background_High': 20000, + 'Laser_Shots': 1000, + 'LR_Input':1, + 'DAQ_Range':0, + 'Depolarization_Factor': 0,}, + } +