Re: [weewx-user] Using Temporal Analysis for Temperature QC?

2019-06-23 Thread J D
Hi, Funny you suggested a running mean value. I have done that by making changes the qc python code ( it was easier than creating a service for me ) and then added a couple fields to the weewx config file under the qc section to adjust what my threshold values are and also giving me a way to tu

[weewx-user] Suppression of WU record output in /var/log/syslog

2019-06-23 Thread GCC Observatory
Hi all, First time posting here. I recently updated to 3.9.1 and noticed that the following appears in /var/log/syslog every time my weather station updates to WU, which is every 2 seconds: . . . Jun 24 01:34:49 talon weewx[1966]: restx: Wunderground-RF: Published record 2019-06-24 01:34:50

[weewx-user] Re: WeatherflowUDP and MQTTSubscribe Error weewx[8675]: engine: Caught unrecoverable exception in engine: start time is greater than stop time

2019-06-23 Thread Patrick Mendiuk
The original topic has been queued and processed without issue for over 24 hours. I added some other topics that are queued but never processed: Jun 23 21:51:08 MITX-6930 weewx[8383]: MQTTSubscribeService: Queue was empty Jun 23 21:51:08 MITX-6930 weewx[8383]: MQTTSubscribeService: Packet after

[weewx-user] Re: WeatherflowUDP and MQTTSubscribe Error weewx[8675]: engine: Caught unrecoverable exception in engine: start time is greater than stop time

2019-06-23 Thread Patrick Mendiuk
The original topic is being queued and processed fine. I have some other topics that are being queued but never added: Jun 23 21:51:08 MITX-6930 weewx[8383]: MQTTSubscribeService: Queue was empty Jun 23 21:51:08 MITX-6930 weewx[8383]: MQTTSubscribeService: Packet after update is: 2019-06-23 21:

[weewx-user] Re: WeatherflowUDP and MQTTSubscribe Error weewx[8675]: engine: Caught unrecoverable exception in engine: start time is greater than stop time

2019-06-23 Thread Patrick Mendiuk
> > The original data topic is being queued and processed fine by > mqttsubcribe. I have other MQTT packets that are added to the queue but > are ignored: > Jun 23 21:51:08 MITX-6930 weewx[8383]: MQTTSubscribeService: Queue was empty Jun 23 21:51:08 MITX-6930 weewx[8383]: MQTTSubscribeService

Re: [weewx-user] Re: weewx hangs after update from 3.8 to 3.9.1

2019-06-23 Thread Michael Aschauer
well, now i´m feeling too young for this stuff ;-) Am Mo., 24. Juni 2019 um 03:50 Uhr schrieb Andrew Milner < andrew.s.r.mil...@gmail.com>: > 52 is a mere babe .. > > > On Monday, 24 June 2019 00:00:36 UTC+3, Thomas Keffer wrote: >> >> sudo pcmanfm and open the .conf via gui. did so every ti

Re: [weewx-user] Using Temporal Analysis for Temperature QC?

2019-06-23 Thread Graham Eddy
could do something like a highly simplified 1st pass filter i.e. have a running mean value and reject items that deviate more than a tolerance in a single interval - this is really QCing something like the first differential (dx/dt) to filter spikes, even if the spikes are within the [min,max] r

[weewx-user] Re: How to copy or create a new uploader function. need 2 "wunderground" uploaders for use with Opensprinkler.com

2019-06-23 Thread Andrew Milner
I use opensprinkler pi, but locally on my network and do not connect to OS in the cloud at all. Following the demise of WU from OS I switched weewx to upload also to OWM which worked fine except that OWM will only give pws data back via the API - so OS could only get local area data rather than

Re: [weewx-user] Re: weewx hangs after update from 3.8 to 3.9.1

2019-06-23 Thread Andrew Milner
52 is a mere babe .. On Monday, 24 June 2019 00:00:36 UTC+3, Thomas Keffer wrote: > > sudo pcmanfm and open the .conf via gui. did so every time and had no issues. > pls don´t judge me, this is my way, i´m 52 and no scipt kiddy, so every > improvement is welcome! >> >> > That would do it. T

[weewx-user] Re: How to copy or create a new uploader function. need 2 "wunderground" uploaders for use with Opensprinkler.com

2019-06-23 Thread Chris Richmond
Hi, making good progress. Need to figure out what's up with json.loads. Works in one case, not the other. Other than that, the same script works from the command line or as a cgi, which was on my to-do list for a while. Chris -- You received this message because you are subscribed to the Goo

Re: [weewx-user] Using Temporal Analysis for Temperature QC?

2019-06-23 Thread Jared Marquis
Could this not be applied in a semi-similar method to calc_rainRate's previous record look-up? E.g., psuedocoding, Grab last archive value (T,Td,etc) If abs(last archive value - current value)>some_value: add suspect_flag Then go back and remove suspect_flags based on whether a spike occurre

Re: [weewx-user] Using Temporal Analysis for Temperature QC?

2019-06-23 Thread gjr80
We're not going to see the mythical spike detector resurrected are we? (also https://github.com/weewx/weewx/pull/228) Gary On Monday, 24 June 2019 07:14:49 UTC+10, Thomas Keffer wrote: > > Hello, Jared > > Unfortunately, StdQC can only reject values tha

Re: [weewx-user] Using Temporal Analysis for Temperature QC?

2019-06-23 Thread Thomas Keffer
Hello, Jared Unfortunately, StdQC can only reject values that are outside of a [min, max] range. However, this would not be a very hard service to write. Something like (NOT TESTED): import time from weewx.engine import StdService class MyQC(StdService): """Check for time and temperature ou

Re: [weewx-user] Re: weewx hangs after update from 3.8 to 3.9.1

2019-06-23 Thread Thomas Keffer
> > sudo pcmanfm and open the .conf via gui. did so every time and had no issues. > pls don´t judge me, this is my way, i´m 52 and no scipt kiddy, so every > improvement is welcome! > > That would do it. Try using a true text editor, or search the pcmanfm manual for how to prevent it from inserti

[weewx-user] Using Temporal Analysis for Temperature QC?

2019-06-23 Thread Jared Marquis
I've noticed a few issues with the occasional bad temperature/dew point measurement. Specifically, this week, my high temperature is: 101.0°F at 01:42:00 AM (Monday). While unusual, not impossible. That said, it happened overnight, and was surrounded by temperatures in the 50s. This is obvi

[weewx-user] Re: weewx hangs after update from 3.8 to 3.9.1

2019-06-23 Thread Michael Aschauer
ad 1) did the clean memory again, now it worked. here´s the debug report Jun 23 21:55:16 wetterraspi weewx[2988]: vantage: Getting archive packets since 2019-06-23 21:50:00 CEST (1561319400) Jun 23 21:55:19 wetterraspi weewx[2988]: vantage: Retry #0 failed Jun 23 21:55:19 wetterraspi weewx[2988]

[weewx-user] Display Rainfall

2019-06-23 Thread Ryan M.
Hello, Is it possible for weewx to display rainfall like the attached graphic portrays? Regards, Ryan -- 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

[weewx-user] Re: WeatherflowUDP and MQTTSubscribe Error weewx[8675]: engine: Caught unrecoverable exception in engine: start time is greater than stop time

2019-06-23 Thread Patrick Mendiuk
The new version has been working without issue. Thanks very much for all your effort and a great weewx extension. -Patrick -- 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 a

Re: [weewx-user] Re: weewx hangs after update from 3.8 to 3.9.1

2019-06-23 Thread Thomas Keffer
1. Most likely the reason the error "Resource temporarily unavailable" happened is because weewx was running and competing for the console's attention. Stop weewx, then retry clearing the memory. 2. A text editor is what you want, but some of them add a BOM. You want a "coding" oriented editor suc

[weewx-user] Re: Belchertown Solar Radiation Graph and High Chart Questions

2019-06-23 Thread Pat
I should have been more clear. weewx.conf will always override skin.conf if there are duplicate settings between the two. Please modify the float point to your preference in weewx.conf - that's the correct spot. On Sunday, June 23, 2019 at 1:36:22 PM UTC-4, Patrick Mendiuk wrote: > > There are

[weewx-user] Re: Belchertown Solar Radiation Graph and High Chart Questions

2019-06-23 Thread Patrick Mendiuk
There are multiple String Formats in weewx.conf and skin.conf. The values in skin.conf don't have any effect on the generated html files that I can see. The values in weewx.conf are used. > > -Patrick > -- You received this message because you are subscribed to the Google Groups "we

[weewx-user] Re: weewx hangs after update from 3.8 to 3.9.1

2019-06-23 Thread Michael Aschauer
ad 1) after stopping service and a reboot pi@wetterraspi:~ $ wee_device --clear-memory Using configuration file /etc/weewx/weewx.conf Using Vantage driver version 3.1.1 (weewx.drivers.vantage) Traceback (most recent call last): File "/usr/bin/wee_device", line 66, in main() File "/usr/bin

[weewx-user] help to prioritize hardware for weewx

2019-06-23 Thread m karthikeyan
i am planning to invest in hardware on pws compatible to weewx. please list robust hardware specification that can support non stop weather data for atleast 12 months. this is a academic work any help vendor .. cost.. appreciated to prioritize based on available funds. thanks karthikeyan -- You r

[weewx-user] Re: BloomSky traceback after IndexError

2019-06-23 Thread Rick M0LEP
On Sun 23 Jun gjr80 wrote: > It would appear that at times the driver is getting a response from > the bloomsky API but that response is empty. I have modified the > driver to catch the exception, wait for the retry_wait period (10 sec > by default) and then try again. If it continues to fail af

Re: [weewx-user] Re: weewx hangs after update from 3.8 to 3.9.1

2019-06-23 Thread Thomas Keffer
1. Could you please post the log (with debug=1) after clearing the memory? 2. Just as I suspected: your copy of weewx.conf includes a BOM at the beginning of the file (the octal magic numbers 357, 273, 277). When WeeWX read the file, it converted it to Unicode, which WeeWX version 3.9 is not prepa

Re: [weewx-user] Re: weewx hangs after update from 3.8 to 3.9.1

2019-06-23 Thread Michael Aschauer
thank you thomas. ad 1) in the section there are two ways to fix the problem. first i did a reset of the vantage pro2, but nothing changed. then i sent wee_device --clear-memory and same here, it seems that there´s no change. charts are updated, but left side is not. weewx feeds a website with mete

[weewx-user] Acurite access hub annoyances

2019-06-23 Thread Ray Pfaff
This doesn't have anything to do with weewx actually, it's just an annoyance I've seen using the acurite access hub. I've noticed that it seems to stop handshaking with wunderground for several hours, usually on the weekends. At first I thought this had to do with maintenance on the wundergro

[weewx-user] Re: Monthly reports for current and previous months are generated in different display units

2019-06-23 Thread gjr80
You don't know how glad I was that this was the problem - I was out of ideas after this one! Gary On Sunday, 23 June 2019 22:30:57 UTC+10, Mickael Hoareau wrote: > > Wow ... I'm embarassed O_o > I was sure the Standard skin was disabled. > > I disabled it and it indeed worked. > > As always, it'

[weewx-user] Re: BloomSky traceback after IndexError

2019-06-23 Thread gjr80
Hi, It would appear that at times the driver is getting a response from the bloomsky API but that response is empty. I have modified the driver to catch the exception, wait for the retry_wait period (10 sec by default) and then try again. If it continues to fail after 3 attempts that download i

[weewx-user] Re: Monthly reports for current and previous months are generated in different display units

2019-06-23 Thread Mickael Hoareau
Wow ... I'm embarassed O_o I was sure the Standard skin was disabled. I disabled it and it indeed worked. As always, it's was something really simple but it takes someone else to point it out ! Haha. Thank you a lot for the time you took to help me. :) Mickael Le dimanche 23 juin 2019 16:0

[weewx-user] Re: Monthly reports for current and previous months are generated in different display units

2019-06-23 Thread gjr80
Aha, I think i see what may be going on. You have the Standard skin and the Bootstrap skin both generating to public_html. Both the Standard skin and the Bootstrap skin have NOAA sub-directories with identical (or near identical) templates. So you have two skins generating the same reports into

[weewx-user] Re: Monthly reports for current and previous months are generated in different display units

2019-06-23 Thread Mickael Hoareau
Hello, There some really minor adjustements made on the skin that are not commited in the fork. But these minor adustements are running on other weewx instances (like http://stations.meteor-oi.re/BER590/history.html) and working just fine with previous NOAA reporting in the good units, so they

Re: [weewx-user] Re: weewx hangs after update from 3.8 to 3.9.1

2019-06-23 Thread Thomas Keffer
Two things: 1. As luck would have it, you also seem to have a problem with corrupt memory in your logger. See the section *WeeWX generates HTML pages, but it does not update them * for how to fix. 2. I'm still mystified why your

[weewx-user] Re: Belchertown Solar Radiation Graph and High Chart Questions

2019-06-23 Thread Pat
To change the floating point, look what you have set for group_pressure, then set the floating point for that setting under StringFormats. Restart weewx when done and wait for the archive period to make new charts. On Sunday, June 23, 2019 at 1:46:45 AM UTC-4, Patrick Mendiuk wrote: > > Lookin

[weewx-user] Re: ClientRaw - Loop to Server?

2019-06-23 Thread 'Andy Hudson-Smith' via weewx-user
Brilliant that worked a treat and clientraw is decoding nicely - i use it to convert the data to strong for text to a LED Matrix, every couple of mins. Much appreciated, Andy -- You received this message because you are subscribed to the Google Groups "weewx-user" group. To unsubscribe from t

Re: [weewx-user] Re: WS3080 Lockup - FineOffsetUsb workaround not working.

2019-06-23 Thread Nick
On 23/06/2019 09:03, Dave, G1OGY wrote: > > > On Sunday, 9 June 2019 13:33:54 UTC+1, Nick wrote: >> >> On 09/06/2019 05:51, 'Johannes Ebner' via weewx-user wrote: >>> I still have this issue. For me it seems that the Power-Cycle >>> Implementation in WeeWx is broken. >>> >> >> Hi, >> >> I am

[weewx-user] BloomSky traceback after IndexError

2019-06-23 Thread Rick M0LEP
Occasionally I see the BloomSky data collector fail. When it does so I get a traceback like this in user.log: Jun 23 03:50:06 duma weewx[19415]: bloomsky: bloomsky-client: Exception: Traceback (most recent call last): File "/usr/share/weewx/user/bloomsky.py", line 674, in run self.client

Re: [weewx-user] Re: WS3080 Lockup - FineOffsetUsb workaround not working.

2019-06-23 Thread Dave, G1OGY
On Sunday, 23 June 2019 07:30:53 UTC+1, Johannes Ebner wrote: > > How is this script working? > > Do you run it once and it stays in the background? Or do you run it via > crontab? > > >> ATM it is running from the command line as I did not want to reboot the Pi: /home/weewx/monitorlockup

Re: [weewx-user] Re: WS3080 Lockup - FineOffsetUsb workaround not working.

2019-06-23 Thread Dave, G1OGY
On Sunday, 9 June 2019 13:33:54 UTC+1, Nick wrote: > > On 09/06/2019 05:51, 'Johannes Ebner' via weewx-user wrote: > > I still have this issue. For me it seems that the Power-Cycle > > Implementation in WeeWx is broken. > > > > Hi, > > I am in the same boat :-( > > > Likewise. I have just

[weewx-user] Re: Monthly reports for current and previous months are generated in different display units

2019-06-23 Thread gjr80
Thanks. I have not forgotten this. I have looked through what you have provided and I cannot see anything that could be causing the problem. So as the next step I copied your fork and installed it on a VM here to see if I could reproduce problem. Unfortunately it all works fine for me, metric t

[weewx-user] cost of pws

2019-06-23 Thread m karthikeyan
any one can list tentative cost of recent veersionpws in USD and model compatible for weewx.. it would help me to shortlist few.. availability.. vendor link etc. thanks karthi -- You received this message because you are subscribed to the Google Groups "weewx-user" group. To unsubscribe from th

[weewx-user] Re: RTL-SDR setup help

2019-06-23 Thread mwall
On Sunday, June 23, 2019 at 2:22:02 AM UTC-4, Richard Horobin wrote: > > Dear Team, > This seems relevant to me, as I'm also trying to use RTL_433 to intercept > radio messages from my Acurite 5n1, as I didn't want to buy their Bridge. > Now I'm trying to configure weewx.conf so that it will t

Re: [weewx-user] Re: WS3080 Lockup - FineOffsetUsb workaround not working.

2019-06-23 Thread Dave, G1OGY
On Sunday, 23 June 2019 07:30:53 UTC+1, Johannes Ebner wrote: > > How is this script working? > > Do you run it once and it stays in the background? Or do you run it via > crontab? > >> >> ATM it is running from the command line as I did not want to reboot the Pi: /home/weewx/monitorlockup

[weewx-user] Re: Windrose with weewx

2019-06-23 Thread 'Ralf B' via weewx-user
hello how can i create a plot from the actually month? or from the last month? Am Sonntag, 7. August 2016 12:13:30 UTC+2 schrieb Ralf B: > > hello > > how can i create a windrose like this one: > > > > > *regard* > -- Y

[weewx-user] Re: weewx hangs after update from 3.8 to 3.9.1

2019-06-23 Thread Michael Aschauer
good morning and thx thomas, copied and replaced file. seems better, charts are updating, but data on the left side seem static (current conditions etc.) i´ve exposed the main html site to DMZ, so you can take a look http://www.dott.at/weewx here the result from debug: Jun 23 07:05:51 wetterra