Sun, 26 Feb 2017 22:13:32 +0200
Update for licel depol calibration converter.
--- a/atmospheric_lidar/licel_depol.py Sun Feb 26 22:13:09 2017 +0200 +++ b/atmospheric_lidar/licel_depol.py Sun Feb 26 22:13:32 2017 +0200 @@ -109,14 +109,6 @@ self.update() - def subset_by_netcdf_channels(self): - """ - Subset the measurement based on the available netcdf channels in the parameters file. - """ - channels = self.extra_netcdf_parameters.channel_parameters.keys() - new_measurement = self.subset_by_channels(channels) - return new_measurement - def subset_photoncounting(self): """ Subset photoncounting channels.
--- a/atmospheric_lidar/scripts/licel2scc.py Sun Feb 26 22:13:09 2017 +0200 +++ b/atmospheric_lidar/scripts/licel2scc.py Sun Feb 26 22:13:32 2017 +0200 @@ -91,7 +91,6 @@ search_str = os.path.join(args.directory, args.search_string) files = glob.glob(search_str) - print(args.parameter_file) if files: # Read the files print "Reading {0} files from {1}".format(len(files), args.directory)
--- a/setup.py Sun Feb 26 22:13:09 2017 +0200 +++ b/setup.py Sun Feb 26 22:13:32 2017 +0200 @@ -55,6 +55,7 @@ "netcdf4", ], entry_points={ - 'console_scripts': ['licel2scc = atmospheric_lidar.scripts.licel2scc:main'], + 'console_scripts': ['licel2scc = atmospheric_lidar.scripts.licel2scc:main', + 'licel2scc-depol = atmospheric_lidar.scripts.licel2scc_depol:main'], }, )