Re: [weewx-user] forcast wunderground for weewx 4.2.x using python 3

2020-12-03 Thread 'Michael Waldor' via weewx-user
I've pulled your change and waited for some days: Now the temperatures shown look much better. No longer constant values. And the values match with our weather😊 Thanks for your support, Michael jo...@johnkline.com schrieb am Dienstag, 1. Dezember 2020 um 15:47:50 UTC+1: > This is now releas

Re: [weewx-user] forcast wunderground for weewx 4.2.x using python 3

2020-12-03 Thread John Kline
Thanks for getting back to me. > On Dec 3, 2020, at 5:42 AM, 'Michael Waldor' via weewx-user > wrote: > > I've pulled your change and waited for some days: Now the temperatures shown > look much better. No longer constant values. And the values match with our > weather😊 > > Thanks for your

Re: [weewx-user] Re: Belchertown Graphs, Reports, Records only show Index with parent directory in text.

2020-12-03 Thread Timothy L
Thank you for your replies, Ian and Vince. Was out of town for the holiday and will investigate according to your answers. I appreciate your help. On Fri, Nov 27, 2020, 8:42 AM ian...@kinnon.org wrote: > I am no expert, but sounds like it might be a web server issue rather than > weewx/belchert

[weewx-user] Syntax - install.py

2020-12-03 Thread garrya...@gmail.com
With the usual aplogies if this is documented somewhere and I didn't work hard enough to find it. . . I'm working on getting my RSS/Atom feed extension (to the Belchertown skin) ready for release so want to fully utilize install.py. Is there a description available for the syntax used in instal

Re: [weewx-user] Syntax - install.py

2020-12-03 Thread Tom Keffer
Unfortunately, no. You'll have to follow the examples of the existing installers. On Thu, Dec 3, 2020 at 7:32 AM garrya...@gmail.com wrote: > With the usual aplogies if this is documented somewhere and I didn't work > hard enough to find it. . . > > I'm working on getting my RSS/Atom feed extens

Re: [weewx-user] Davis WeatherLink Live: Which driver is best?

2020-12-03 Thread didier....@gmail.com
The right value is "altimeter" See specs https://www.davisinstruments.com/product_documents/weather/spec_sheets/6100_WL-Live_Spec_Sheet.pdf Le mercredi 2 décembre 2020 à 14:24:37 UTC+1, kk44...@gmail.com a écrit : > To my support question to the Davis support I finally received a reply. I > as

Re: [weewx-user] Syntax - install.py

2020-12-03 Thread Garry A Lockyer
Thanks! That is what I’m doing. :^)) Regards, Garry Lockyer C: +1.250.689.0686 E: ga...@lockyer.ca > On Dec 3, 2020, at 07:37, Tom Keffer wrote: > >  > Unfortunately, no. You'll have to follow the examples of the existing > installers. > >> On Thu, Dec 3, 2020 at 7:32 AM garrya...@gmail.

[weewx-user] simple python question, while adopting current.inc

2020-12-03 Thread Vetti52
After upgrading to Weewx version 4.2.0 I want to replace the deprecated type Beaufort by the new unit $current.windSpeed.beaufort. First, I replaced the previous evaluation in my accomodated current.inc, where I want to express the beaufort value by a literal description: #if $varExists('day.win

Re: [weewx-user] simple python question, while adopting current.inc

2020-12-03 Thread Tom Keffer
Your main problem is that $current.windSpeed.beaufort returns a number, not a string. So, you want #if $varExists('day.windSpeed') and $current.windSpeed.raw is not None #if $current.windSpeed.beaufort == 0 #set $word_current_beaufort = 'Calm' #elif $current.windSpeed.beaufort == 1 #se

Re: [weewx-user] simple python question, while adopting current.inc

2020-12-03 Thread Vetti52
I tried the integer version already, with the same result. So, I assumed, that Beaufort is a string. Still no success. At least current.windGust.beaufort works fine! Thanks for the hint. Showing wind gust is just to compare the values to the red line in the windspeed/gust graph. When sailing, I

Re: [weewx-user] simple python question, while adopting current.inc

2020-12-03 Thread Tom Keffer
Silly me. You need a .raw suffix: #if $varExists('day.windSpeed') and $current.windSpeed.raw is not None #if $current.windSpeed.beaufort.raw == 0 #set $word_current_beaufort = 'Calm' #elif $current.windSpeed.beaufort.raw == 1 #set $word_current_beaufort = 'Light Air' ... #else #s

Re: [weewx-user] simple python question, while adopting current.inc

2020-12-03 Thread Vetti52
Right! That works nicely. Well, I could have realized it. But perfect, that there is somone, that understands, what I have written. Thanks a lot! tke...@gmail.com schrieb am Donnerstag, 3. Dezember 2020 um 18:47:33 UTC+1: > Silly me. You need a .raw suffix: > > #if $varExists('day.windSpeed') a