PollyNET / Pollynet_Processing_Chain

NRT lidar data processing program for multiwavelength polarization Raman lidar network (PollyNET)
https://polly.tropos.de/
GNU General Public License v3.0
19 stars 8 forks source link

Masking overlap #271

Open martin-rdz opened 1 month ago

martin-rdz commented 1 month ago

When the values of the overlap function get too small (e.g. 1e-5), the overlap corrected products explode for the lowest bins.

grafik

A simple mask before the overlapCorrection helps to address this:

olFunc355Raman(olFunc355Raman <= 0.01) = NaN;
olFunc532Raman(olFunc532Raman <= 0.01) = NaN;