Hallo

in kl.py Klimalog-driver

 temp x < 81.0 if temp x = 81.0 temp not defined
also 
 humidity x < 100.0 if humidity > 100 not defined

        # calculate dewpoints and heatindices
        # FIXME: this belongs in StdWXCalculate
        for y in range(0, 9):
            if data.values['Temp%d' % y] < 81.0 and data.values['Humidity%d' 
% y] < 100.1:
                data.values['Dewpoint%d' % y] = weewx.wxformulas.dewpointC(
data.values['Temp%d' % y], data.values['Humidity%d' % y])
                data.values['Heatindex%d' % y] = weewx.wxformulas.heatindexC
(data.values['Temp%d' % y], data.values['Humidity%d' % y])

I do not remember where I read (ich weiß ich mehr wo ich gelesen habe)

Reply via email to