Sunshine duration calculation reports whether the sun is shining or not. The sunshine duration component returns Boolean-type data:
1
: the sun is shining0
: the sun is not shining
Sunshine duration calculation with CSD3
In weather stations with CSD3, sunshine duration is calculated as follows:
- The weather station polls the sensor 6 times in a minute and saves these samples.
-
Every minute, the 6 last samples are evaluated and compared to a predefined limit value (default = 4):
- If as many or more samples than the limit value indicate sunshine, the minute is counted to sunshine duration.
- If less samples than the limit indicate sunshine, the minute is not counted to sunshine duration.