fixed wrong equation at line 201

This commit is contained in:
d3m1g0d
2019-03-31 11:53:23 +02:00
parent c92fd63160
commit 212ea9ec65

View File

@@ -198,7 +198,7 @@ class UVSensor:
b = bCorr * 0.00125
# last, calculate the UV index
i = (uva + uvb) / 2
i = (a + b) / 2
return [a,b,i]