Lilas sytem from Lille

Tue, 07 Jun 2016 17:06:52 +0300

author
Ioannis <binietoglou@noa.gr>
date
Tue, 07 Jun 2016 17:06:52 +0300
changeset 41
9d1b212552b3
parent 40
1b04f17ab7b9
child 42
62da57352e86

Lilas sytem from Lille

atmospheric_lidar/lilas.py file | annotate | diff | comparison | revisions
atmospheric_lidar/lilas_netcdf_parameters.py file | annotate | diff | comparison | revisions
--- /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
--- /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,},
+     }

mercurial