Wed, 22 Feb 2017 15:52:35 +0200
Fixed bug in Channel_ID definition (reported by Francesco). Now it is defined as integer, not double.
atmospheric_lidar/__init__.py | file | annotate | diff | comparison | revisions | |
atmospheric_lidar/generic.py | file | annotate | diff | comparison | revisions |
--- a/atmospheric_lidar/__init__.py Fri Feb 17 13:19:32 2017 +0200 +++ b/atmospheric_lidar/__init__.py Wed Feb 22 15:52:35 2017 +0200 @@ -1,1 +1,1 @@ -__version__ = '0.2.7' \ No newline at end of file +__version__ = '0.2.8' \ No newline at end of file
--- a/atmospheric_lidar/generic.py Fri Feb 17 13:19:32 2017 +0200 +++ b/atmospheric_lidar/generic.py Wed Feb 22 15:52:35 2017 +0200 @@ -324,7 +324,7 @@ first_channel_keys = params.channel_parameters.items()[0][1].keys() if "channel_ID" in first_channel_keys: channel_var = 'channel_ID' - variable_type = 'd' + variable_type = 'i' elif "channel string ID" in first_channel_keys: channel_var = 'channel string ID' variable_type = str