Minor change for code clarity

Sun, 15 Mar 2020 16:45:04 +0200

author
Iannis <ioannis@inoe.ro>
date
Sun, 15 Mar 2020 16:45:04 +0200
changeset 193
bea35be85f99
parent 192
a73d587fd84c
child 194
809190df0dc8

Minor change for code clarity

atmospheric_lidar/licel.py file | annotate | diff | comparison | revisions
--- a/atmospheric_lidar/licel.py	Sun Mar 15 11:12:28 2020 +0200
+++ b/atmospheric_lidar/licel.py	Sun Mar 15 16:45:04 2020 +0200
@@ -132,9 +132,8 @@
 
         In addition, some ancillary variables are also calculated (z, dz, number_of_bins).
         """
-        data = self.raw_data
-
-        norm = data / float(self.number_of_shots)
+        
+        norm = self.raw_data / float(self.number_of_shots)
         dz = self.bin_width
 
         if self.is_analog:

mercurial