# HG changeset patch # User Iannis # Date 1488140012 -7200 # Node ID ed4ae866a95a2525962d9067b9e44b5ce0646d1c # Parent aad6de8090090afb8bf71246a0524d8eaac2e4fc Update for licel depol calibration converter. diff -r aad6de809009 -r ed4ae866a95a atmospheric_lidar/licel_depol.py --- 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. diff -r aad6de809009 -r ed4ae866a95a atmospheric_lidar/scripts/licel2scc.py --- 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) diff -r aad6de809009 -r ed4ae866a95a setup.py --- 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'], }, )