AugustinMortier / a-profiles

Python library for reading and processing Lidar and ceilometer data
GNU General Public License v3.0
11 stars 1 forks source link

Make climatology faster #15

Open AugustinMortier opened 2 years ago

AugustinMortier commented 2 years ago

The climatology currently takes 2 hours on ppi. This is due to the fact that all the profiles are read and combined together.

A benefit, when running the classic daily run, would be to read only the already computed climatology file, and combine it with the current processed day. The update_climatology block has to be be moved inside the date loop. The current season has to be weighted with to the number of days used when combining with the current day profile.

AugustinMortier commented 2 years ago

This option would probably break reruns though.