[weewx-user] Re: NOW: Wrong PRECIP ACCUM....TE923 :(

2020-06-14 Thread Timothy Witham
Perhaps I got too far ahead wanting to fix the source for all users. The problem is that we can fix our copy but not the source. So upgrades will revert our fix. So I will move my patch to a pull request over on github. That is more likely to get fixed at the source after discussion and

Re: [weewx-user] Belchertown MQTT

2020-06-14 Thread Garry A Lockyer
Seems to me you have to publish MQTT data (under [StdRESTful][[MQTT]] so that you can later retrieve the data in [StdReport][[Belchertown]][[[Extras]]]. I suppose it’s possible to have one instance of weewx publish data and another instance subscribe to it, but there has to be at least one

Re: [weewx-user] Forecast Extension and Python 3

2020-06-14 Thread p q
There's a newer version with a fix. Search this group with the error message and you'll find it. On Sun, Jun 14, 2020 at 7:41 PM Tony Deets wrote: > I recently move weewx form a Pi 3 running Stretch with weewx using Python > 2.7 to a Pi 4 running Buster using Python 3.whatever. The new Pi 4

[weewx-user] Forecast Extension and Python 3

2020-06-14 Thread Tony Deets
I recently move weewx form a Pi 3 running Stretch with weewx using Python 2.7 to a Pi 4 running Buster using Python 3.whatever. The new Pi 4 weewx setup is almost exact copy of Pi 3 setup. The one difference is that when the Forecast extension installed and enabled I get the following syslog

Re: [weewx-user] Belchertown MQTT

2020-06-14 Thread Ken Walker
Thanks. I don’t want to publish since I’m already getting data from MQTT. My subscribe settings are the same as yours(other than host and topic obviously). But it does not work. I’m perplexed :) > On Jun 14, 2020, at 8:54 PM, garryalock...@gmail.com wrote: > > Here’re the settings I’m

[weewx-user] Re: Having yesterday's rain listed right under Rain Rate, Rain Today in the Current Conditions section

2020-06-14 Thread Dale Reid
Thank you for the examples and ways to accomplish this. I assume that by trying it, it will not corrupt the data base, since this is a 'read' type function, correct? If I screw it up, then no harm done, just remove this code or whatever I insert and then restart WeeWx? Secondly, just for my

RE: [weewx-user] Belchertown MQTT

2020-06-14 Thread garryalockyer
Here’re the settings I’m currently using successfully: [[MQTT]] # This is to PUBLISH MQTT topics - username and password are required, on my system. server_url = mqtt://username:password@192.168.1.140:1883/ topic = weather/OsoyoosLakeNorthEast

[weewx-user] MySQL DB issue, connection was killed error, which casues weewx to stop

2020-06-14 Thread bdf0506
Hello all. I ran into an issue where MySQL was shut down, and as a result it kills the connection to weewx. But weewx doesn't seem to have logic to understand when the database comes back. It seems we could implement a sleep and retry. This is similar to this thread from 2018 that I reported:

Re: [weewx-user] Belchertown MQTT

2020-06-14 Thread Ken Walker
Is the implementation expecting one observation at a time returned from the broker. I am returning from 1 - 5 observations in one json string > On Jun 14, 2020, at 7:47 PM, Garry A Lockyer wrote: > > The websockets port probably should be 9001. 1883 is usually the MQTT broker. > > Regards,

Re: [weewx-user] Belchertown MQTT

2020-06-14 Thread Ken Walker
I changed it to that. Still doesn’t work, but the behavior is slightly different. On the page I now get a “lost connect….” message which flashes on and off for a few seconds. I know my broker is working on port 9001 as I have tested it from a test python script. > On Jun 14, 2020, at 7:47

Re: [weewx-user] Re: Full day highcharts question

2020-06-14 Thread gjr80
What you are seeing is some subtly different behaviour brought about by the introduction of xtypes in WeeWX v4. One of the things that xtypes did was replace the manager.getSqlVectors() method; it now uses xtypes.get_series() (getSqlVectors() still exists and continues to be supported in v4

Re: [weewx-user] Belchertown MQTT

2020-06-14 Thread Garry A Lockyer
The websockets port probably should be 9001. 1883 is usually the MQTT broker. Regards, Garry Lockyer C: +1.250.689.0686 E: ga...@lockyer.ca > On Jun 14, 2020, at 16:43, Ken Walker wrote: > >  > I'm getting my data from an internal MQTT server using the wxMesh driver and > all is working

[weewx-user] Re: Having yesterday's rain listed right under Rain Rate, Rain Today in the Current Conditions section

2020-06-14 Thread Paul McGeorge
In addition to the $day($days_ago=1).rain.sum you can also use $yesterday.rain.sum if you just want yesterdays rain or perhaps you really want to know if it rained while you were asleep and would prefer the last 24 hours in which case you can use the Span function like this

[weewx-user] Belchertown MQTT

2020-06-14 Thread Ken Walker
I'm getting my data from an internal MQTT server using the wxMesh driver and all is working well. I would like to enable the MQTT updates, but cannot get them to work. I get a failed to connect message. All items are on my internal network. I have no trouble connecting from my weewx

[weewx-user] Re: Aeris and Belchertown

2020-06-14 Thread Ken Walker
Works great. On Sunday, June 14, 2020 at 3:43:43 PM UTC-4, Ken Walker wrote: > > I have installed the development version of the Belchertown skin and it > looks terrific! > > Thanks Pat > > I'm just wondering if you've found an free version of the Aeris api that > doesn't expire after 30

[weewx-user] Re: Having yesterday's rain listed right under Rain Rate, Rain Today in the Current Conditions section

2020-06-14 Thread Jeff A. D.
I haven't tried it, but form the docs, http://www.weewx.com/docs/customizing.htm#general_aggregation_periods, I would think something like this would work. If you were using the Seasons skin I would add it to "current.inc". $obs.label.Rainfall Yesterday

[weewx-user] Re: Having yesterday's rain listed right under Rain Rate, Rain Today in the Current Conditions section

2020-06-14 Thread Jeff A. D.
I haven't tried it, but form the docs, file:///usr/share/doc/weewx/customizing.htm#general_aggregation_periods, I would think something like this would work. If you were using the Seasons skin I would add it to "current.inc". $obs.label.Rainfall Yesterday

Re: [weewx-user] Re: Full day highcharts question

2020-06-14 Thread Pat
Coming up with a loss on this one. Both the "today" and the "year" charts are the full time spans generated by weewx for their time period, and both go through the same SQL function. Yet the year query results is populated 366 times (once a day), but the day query results is only populated for

[weewx-user] Having yesterday's rain listed right under Rain Rate, Rain Today in the Current Conditions section

2020-06-14 Thread Dale Reid
While yesterday's rain total isn't exactly a current condition, I would like to have the display page show the amount of rain from yesterday. I know there are different ideas on when rain totals should zero out, but I'm asking for something slightly different, and for me, would add to the

Re: [weewx-user] Aeris and Belchertown

2020-06-14 Thread Ken Walker
Thanks! > On Jun 14, 2020, at 3:50 PM, Pat wrote: > > If you create an account on Aeris' pwsweather.com > and upload your station data (very similar to wunderground), then your aeris > api access is free for as long as you give them weather data. > > On Sunday,

[weewx-user] Re: Belchertown - German Translation

2020-06-14 Thread Manfred Maier
What I meant is an additional 'legal page', not a cookie banner. Such legal pages are required in many countries around the world. As you saw on my page, I have the 'station' page (with information about the PWS) and the additional legal page. I can see three options: 1) Leave everything as it

Re: [weewx-user] Re: Belchertown skin - page "yesterday"...

2020-06-14 Thread Didier Decoodt
Thanks Manfred I will do a snapshot of my VM before updating... Le dim. 14 juin 2020 à 21:38, Manfred Maier a écrit : > The graphs.conf will not get overwritten by the update. > All your translations and other settings of Belchertown should be stored > in the weewx.conf anyway (and not in the

[weewx-user] Re: Belchertown - German Translation

2020-06-14 Thread Pat
If the skin doesn't store cookie data (which is good, I didn't think it would), then it may be easier for me to explain how to add a cookie consent to the site, putting the onus on the site owner, rather than me and providing a blank template for one. On Sunday, June 14, 2020 at 10:21:43 AM

Re: [weewx-user] Re: Full day highcharts question

2020-06-14 Thread Pat
haha i know what you meant! hope to look into it soon though On Sunday, June 14, 2020 at 3:12:25 PM UTC-4, Manfred Maier wrote: > > My post didn't want to say that you have to look into it NOW. > I just wanted to give a '+1' for this feature request ;) > > ... perhaps it's even something that is

[weewx-user] Re: Aeris and Belchertown

2020-06-14 Thread Pat
If you create an account on Aeris' pwsweather.com and upload your station data (very similar to wunderground), then your aeris api access is free for as long as you give them weather data. On Sunday, June 14, 2020 at 3:43:43 PM UTC-4, Ken Walker wrote: > > I have installed the development

[weewx-user] Aeris and Belchertown

2020-06-14 Thread Ken Walker
I have installed the development version of the Belchertown skin and it looks terrific! Thanks Pat I'm just wondering if you've found an free version of the Aeris api that doesn't expire after 30 days. Or does the development account still keep working? Thanks. Ken -- You received this

Re: [weewx-user] Re: Belchertown skin - page "yesterday"...

2020-06-14 Thread Manfred Maier
The graphs.conf will not get overwritten by the update. All your translations and other settings of Belchertown should be stored in the weewx.conf anyway (and not in the skin.conf of Belchertown!). Adaptions of the CSS-layout should be stored in the custom.css file (which again will not get

Re: [weewx-user] Re: Belchertown skin - page "yesterday"...

2020-06-14 Thread Didier Decoodt
OK... What is the procedure for updating the skin without loss of many adjustments (translation, graphs change...)? (I have pass a lot of time to do this) Thank you for your recommendation Didier Le dim. 14 juin 2020 à 21:09, Manfred Maier a écrit : > Yes, that's why I recommended the

Re: [weewx-user] Re: Full day highcharts question

2020-06-14 Thread Manfred Maier
My post didn't want to say that you have to look into it NOW. I just wanted to give a '+1' for this feature request ;) ... perhaps it's even something that is not possible at all with weewx 4.0. -- You received this message because you are subscribed to the Google Groups "weewx-user" group.

Re: [weewx-user] Re: Belchertown skin - page "yesterday"...

2020-06-14 Thread Manfred Maier
Yes, that's why I recommended the Aeris-API. ;) -- You received this message because you are subscribed to the Google Groups "weewx-user" group. To unsubscribe from this group and stop receiving emails from it, send an email to weewx-user+unsubscr...@googlegroups.com. To view this discussion

Re: [weewx-user] Re: Belchertown skin - page "yesterday"...

2020-06-14 Thread Pat
The development version of the belchertown skin supports both dark sky and aeris weather for forecasts and icons. Feel free to give it a try and test it out. -- You received this message because you are subscribed to the Google Groups "weewx-user" group. To unsubscribe from this group and

Re: [weewx-user] Re: Full day highcharts question

2020-06-14 Thread Pat O'Brien
I'll have to look into it for the day charts. Like I said I'm not sure why the year charts are doing it but I haven't had time to look at it yet. On Sun, Jun 14, 2020, 2:43 PM Manfred Maier wrote: > > This new behavior (ie. showing the entire year / month on the x-axis) has > been the main

Re: [weewx-user] Re: Full day highcharts question

2020-06-14 Thread Manfred Maier
This new behavior (ie. showing the entire year / month on the x-axis) has been the main motivation for me for switching to weewx 4.0. In my opinion, this makes the charts much more readable. Personally I would love to use this 'feature' also for the daily charts. -- You received this message

[weewx-user] Re: Belchertown skin - page "yesterday"...

2020-06-14 Thread Manfred Maier
Salut! Yes, the icon is powered by the forecast API of the belchertown skin. Personally I'm still using the DarkSky API. But in case you should not already have a DarkSky-Key, you can also use the new Aeris-API, which is available in the latest belchertown version (at least I think so). Best

Re: [weewx-user] Rsync issue

2020-06-14 Thread mwall
On Sunday, June 14, 2020 at 12:18:28 PM UTC-4, Ossian wrote: > > I am having a similar issue. I keep seeing mention of the need or > possibility to provide correct keys etc for root to use, but have not found > anything concrete to go on. > there are many ways to do this, for example, one

Re: [weewx-user] Rsync issue

2020-06-14 Thread Ossian
Hi All, I am having a similar issue. I keep seeing mention of the need or possibility to provide correct keys etc for root to use, but have not found anything concrete to go on. default installation of weewx: weewx running as root (ps aux) shows this root 17898 0.3 1.0 123032

Re: [weewx-user] Re: Full day highcharts question

2020-06-14 Thread Didier Decoodt
Exactly, it's work for a year... I will contact the site's owner for more info Thank's Pat for your answer Le dim. 14 juin 2020 à 16:47, Pat a écrit : > I will say that I noticed in weewx 4, that the "year" timespan shows the > full year now. I'm not sure what changed and haven't had the time

Re: [weewx-user] Re: Full day highcharts question

2020-06-14 Thread Pat
I will say that I noticed in weewx 4, that the "year" timespan shows the full year now. I'm not sure what changed and haven't had the time to dive into it. I'm not sure if it's a change with archiveYearSpan() or with highcharts. But the archiveDaySpan() still shows just midnight to "now" with

Re: [weewx-user] Re: Full day highcharts question

2020-06-14 Thread Didier Decoodt
I see this example on a site [image: image.png] Le dim. 14 juin 2020 à 16:39, Pat a écrit : > Not possible at this time. Curious; why do you want to show blank space? > > On Sunday, June 14, 2020 at 10:38:08 AM UTC-4, Didier Decoodt wrote: >> >> Yes, but How to have 24 hours duration for xAxis?

[weewx-user] Re: Full day highcharts question

2020-06-14 Thread Pat
Right now the time_length = today will only show you the values that have happened since midnight. On Sunday, June 14, 2020 at 4:22:04 AM UTC-4, Didier Decoodt wrote: > > Hi > > For the current day graph, I would like to have the xAxis from the > beginning of the day to the end of the day

[weewx-user] Re: Belchertown - German Translation

2020-06-14 Thread Roland Lang
Hi Manfred, that's a good idea to start with a template page. And I also checked my cookies - nothing for my weewx site is stored. Roland -- You received this message because you are subscribed to the Google Groups "weewx-user" group. To unsubscribe from this group and stop receiving emails

[weewx-user] Re: Belchertown - German Translation

2020-06-14 Thread Manfred Maier
Good question. As a starting point, the skin could include an empty template for a Impressum / data protection page. This page is (as far as I know) required in the entire European Union. Such an empty template page would at least inspire people to fill it with content. The content of this

[weewx-user] Re: Belchertown - German Translation

2020-06-14 Thread Pat
What would be the best approach for the skin? Instructions on how to include a cookie consent? It seems every site owner may need to be responsible for themselves and it may be hard for 1 skin to cover all scenarios. On Sunday, June 14, 2020 at 5:01:22 AM UTC-4, Manfred Maier wrote: > > ...

[weewx-user] Re: NOW: Wrong PRECIP ACCUM....TE923 :(

2020-06-14 Thread Felix Maltzahn
Ok. I try to fix my driver. I only want, that the amount is the same the station shows (0,7mm=0,7mm) I`m just a beginner in python...so I hope I don`t destroy anything :D Am Samstag, 13. Juni 2020 18:01:41 UTC+2 schrieb Felix Maltzahn: > > hello again, > > now I have a problem with the

[weewx-user] upload to wetter.com fails - python3

2020-06-14 Thread Roland Lang
Hi, yesterday I updated my weewx installation from python2 to python3. The Upload to wetter.com fails now with following error (but weewx keeps on working): Jun 14 10:25:29 wetter python3[5775]: weewx[5775] ERROR weewx.restx: Wetter: Unexpected exception of type Jun 14 10:25:29 wetter

[weewx-user] Re: Weewx und Renkforce WH2315

2020-06-14 Thread Bogdan
Thank you, Roland! I included your fix into drivers code. Also added overlogging fix. So, now seems it is possible to use this driver further. суббота, 13 июня 2020 г., 20:53:20 UTC+2 пользователь Roland Lang написал: > > Hi, > I have just updated my weewx installation from python2 to python3,

[weewx-user] Re: Belchertown - German Translation

2020-06-14 Thread Manfred Maier
... and even my Impressum / GDPR page is most certainly not 100% bullet proof. But it's hopefully 'good enough' for at least putting legal trolls off. Especially when using cookies, we would have to use an ACTIVE consent in Germany now. That's the reason why I kicked Google Analytics and switch

RE: [weewx-user] Re: Weewx und Renkforce WH2315

2020-06-14 Thread Edwin Zuidema
Thanks Roland, I will fix this today on GitHub.Edwin Original message From: Roland Lang Date: 6/13/20 20:53 (GMT+01:00) To: weewx-user Subject: [weewx-user] Re: Weewx und Renkforce WH2315 Hi,I have just updated my weewx installation from python2 to python3, but Edwin's fork

[weewx-user] wee_config --reconfigure / weewx.conf / group_pressure

2020-06-14 Thread Joachim Puttkammer
Hallo, I noticed that after a "sudo wee_config --reconfigure" in the weewx.conf the lines in the [[Defaults]] [[Units]] Groups group_pressure = hPa and group_speed = km_per_hour must always be overwritten to *mbar* or *meter_per_second*. Joachim -- You received this message because

[weewx-user] Full day highcharts question

2020-06-14 Thread Didier Decoodt
Hi For the current day graph, I would like to have the xAxis from the beginning of the day to the end of the day (midnight). When I use time_length = today, I have from the beginning of the dya (ok) to the current hour My question is: which parameter I have to write in my graphs.conf? Many

[weewx-user] Re: Belchertown - German Translation

2020-06-14 Thread 'NanoG5Kite' via weewx-user
Pat, I really don’t know, as this depend.. But if you look to the Impressum of Manfred his site above you see what I mean...: https://www.wetter-zorneding.de/about/ He secured himself against all possible chambers dissuasions by drafting a huge Impressum, but not sure if he missed something