# HG changeset patch # User Iannis # Date 1515596831 -7200 # Node ID 0bae1c530148e394ac7019d1f0f555788ae67f0c # Parent f9990fc845c4534add9cb5899ea2c147162d8d5b Added warning about subset_by_time in licel files. diff -r f9990fc845c4 -r 0bae1c530148 atmospheric_lidar/licel.py --- a/atmospheric_lidar/licel.py Wed Jan 10 17:04:33 2018 +0200 +++ b/atmospheric_lidar/licel.py Wed Jan 10 17:07:11 2018 +0200 @@ -438,7 +438,14 @@ return new_measurement + def subset_by_time(self, channel_subset): + """ + Subsetting by time does not work yet with Licel files. + This requires changes in generic.py + """ + raise NotImplementedError("Subsetting by time, not yet implemented for Licel files.") + class LicelChannel(LidarChannel):