Issues with Weather-Based Water Level - Printable Version +- SIP (https://nosack.com/sipforum) +-- Forum: SIP (Sustainable Irrigation Platform) (https://nosack.com/sipforum/forumdisplay.php?fid=1) +--- Forum: Report a problem (https://nosack.com/sipforum/forumdisplay.php?fid=9) +--- Thread: Issues with Weather-Based Water Level (/showthread.php?tid=199) |
Issues with Weather-Based Water Level - danny_aka_rudy - 2020 Jan 19 Went ahead and updated to v 4 and have issues with the weather based water level plugin. Went ahead and chose US units and got the following error in syslog Jan 19 14:33:42 piutility sip[13625]: b'Weather-based water level encountered error:\nTraceback (most recent call last):\n File "/home/pi/SIP/plugins/weather_level_adj.py", line 156, in run\n int(options[u"daily_irrigation"])\nValueError: invalid literal for int() with base 10: \'0.0\'\n Seems to be an error in the code... The line is calling out int instead of float. I updated the code to process the value as a float and now the error is cleared. However issues abound.. I went ahead to update the Daily Irrigation value and it will not take a non-integer value and record it to the weather_level_adj.json. It will record if I set it as an integer value (e.g. 1) however when I go back into the settings it does not pick the value back up in the program plugin page. Also, the data shown seems to be a little odd with water needed shown at -1. I'll see if I can try and figure out the rest of the issues but figured I'd post it here in case anyone else is experiencing similar issues. RE: Issues with Weather-Based Water Level - dan - 2020 Jan 20 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 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 RE: Issues with Weather-Based Water Level - danny_aka_rudy - 2020 Jan 21 (2020 Jan 20, 12:16 AM)dan,Thanks for the help. I still don\t think things are all fixed though...Current temperature: Wrote: 33.9deg.F RE: Issues with Weather-Based Water Level - dan - 2020 Jan 21 I am rethinking the fixes. The code is designed for the values to be in SI (metric) units internally and when US units are selected to convert just before they are displayed. I will do some work on this and get back to you as soon as there is a better solution. Dan RE: Issues with Weather-Based Water Level - danny_aka_rudy - 2020 Jan 23 (2020 Jan 21, 03:39 PM)dan,I didn\t really see that... To me it appeared as though things didn't quite line up like that. What you describe seems like a perfectly logical way to do it. This however would require the settings to be written as SI units... Pretty much the only difference in the config saved would be the SI/US preference. The page load would look at the config SI/US flag and then either directly put the data or convert it based on the flag. Vice Versa when saving changes.Changing the preference would force a refresh of the page - go ahead and flush any changes... just reload the valuesDan dan Wrote: I am rethinking the fixes. RE: Issues with Weather-Based Water Level - danny_aka_rudy - 2020 Jan 23 So I did a little bit more digging and testing. At least a portion of the problem is that the daily irrigation value does not get converted back to mm before it gets saved to the json whereas the temperature cutoff does get converted back to degC before being saved to the json file. Not sure why the daily irrigation value isn't being converted to mm before saving as it looks like it should do it in the code... RE: Issues with Weather-Based Water Level - danny_aka_rudy - 2020 Jan 24 (2020 Jan 23, 05:20 AM)danny_aka_rudy Wrote: So I did a little bit more digging and testing. At least a portion of the problem is that the daily irrigation value does not get converted back to mm before it gets saved to the json whereas the temperature cutoff does get converted back to degC before being saved to the json file. Well.. after closer testing and a good nights sleep it looks like it is being converted correctly to the json file. It is however still not displaying correctly in the status section for anything but temp though. This is kickin my bum. looks like it should work RE: Issues with Weather-Based Water Level - dan - 2020 Jan 30 Try changing line ~397 from len_in = round(safe_float(len_mm) // 25.4, 1) to Code: len_in = round(safe_float(len_mm) / 25.4, 1) Note: this is only true under Python3. Edit: another way to fix this is to use multiplication: Code: len_in = round(safe_float(len_mm) * 0.03937, 1) Dan |