I see the same things. Thanks for posting.
The fix for the daily use value not showing properly is to change line 7 of weather_level_adj.html from
to
or even to:
It is re-converting the value to inches (from inches)
Edit:
Also change lin 195 in weather_level_adj.py
to:
removing the "to_in" function call.
Dan
The fix for the daily use value not showing properly is to change line 7 of weather_level_adj.html from
Code:
rainPerDay = round(float(m_vals["daily_irrigation"]) / 25.4, 1)
Code:
rainPerDay = round(float(m_vals["daily_irrigation"]), 1)
Code:
rainPerDay = m_vals["daily_irrigation"]
It is re-converting the value to inches (from inches)
Edit:
Also change lin 195 in weather_level_adj.py
to:
Code:
safe_float(options[u"daily_irrigation"]), u"in"
Dan
<p><br></p>