atmospheric_lidar/systems/lilas/lilas.py

changeset 88
c8bf68bab33a
parent 41
9d1b212552b3
child 91
f9d9d3ea8edb
--- /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

mercurial