diff -r 870fc8f65eeb -r 28d7b0974fe6 pearl.py --- a/pearl.py Mon Nov 24 11:35:17 2014 +0200 +++ b/pearl.py Mon Nov 24 11:35:40 2014 +0200 @@ -4,7 +4,7 @@ import numpy as np -from generic import BaseLidarMeasurement, Lidar_channel +from generic import BaseLidarMeasurement, LidarChannel from ciao import CiaoMixin import pearl_netcdf_parameters @@ -39,7 +39,7 @@ name = channel_info['name'] tm = start_time if name not in self.channels: - self.channels[name] = Lidar_channel(channel_info) + self.channels[name] = LidarChannel(channel_info) self.channels[name].data[tm] = channel_info['data'] self.files.append(filename)