# HG changeset patch # User Iannis # Date 1488460284 -7200 # Node ID 695e9c21a966758a5a0ca986b9f97e37fe6edca7 # Parent c667d81dd268b769d267146c8218ae753ee0120c Fixed used variables with the depol converter. diff -r c667d81dd268 -r 695e9c21a966 atmospheric_lidar/__init__.py --- a/atmospheric_lidar/__init__.py Thu Mar 02 12:39:55 2017 +0200 +++ b/atmospheric_lidar/__init__.py Thu Mar 02 15:11:24 2017 +0200 @@ -1,1 +1,1 @@ -__version__ = '0.2.9' \ No newline at end of file +__version__ = '0.2.10' \ No newline at end of file diff -r c667d81dd268 -r 695e9c21a966 atmospheric_lidar/licel_depol.py --- a/atmospheric_lidar/licel_depol.py Thu Mar 02 12:39:55 2017 +0200 +++ b/atmospheric_lidar/licel_depol.py Thu Mar 02 15:11:24 2017 +0200 @@ -117,7 +117,7 @@ new_measurement = self.subset_by_channels(ph_channels) return new_measurement - def _get_scc_channel_variables(self): + def _get_scc_mandatory_channel_variables(self): """ Get a list of variables to put in the SCC. @@ -130,8 +130,7 @@ A dictionary with channel variable specifications. """ channel_variables = \ - {'channel_ID': (('channels',), 'i'), - 'Background_Low': (('channels',), 'd'), + {'Background_Low': (('channels',), 'd'), 'Background_High': (('channels',), 'd'), 'LR_Input': (('channels',), 'i'), 'DAQ_Range': (('channels',), 'd'),