[weewx-user] Re: TE923 owners: do your rain reports match your hardware console?

2020-06-20 Thread Timothy Witham
Thanks for the input Gary, Another confirmation: I counted 167 bucket tips in my database for the month of May while the memory display on the console shows 4.64 inches. 1/36*167=4.6389, exactly matching the console! Tom has merged my pull request #575 so those of use with conversions

Re: [weewx-user] Wunderground doesn't accept my data

2020-06-20 Thread Tom Keffer
Normally, if you give the wrong API key, you get a 401 error. You are getting a 403 error, which implies that the key may be right, but you do not have authorization to access the data. Are you sure you have the right station? Also, double check the API key. You can find it here

[weewx-user] Wunderground doesn't accept my data

2020-06-20 Thread David Barto
I’ve got a new Station KCAPOWAY177 I’ve got an API key and a ‘key’ <8 alpha numeric key> and my password to log into the site. No matter which of the 3 I choose for my password, the response to wunderfixer is always the same. $ ./bin/wunderfixer --test --config=$(pwd)/weewx.conf

Re: [weewx-user] Wlink driver not compatible with Python3?

2020-06-20 Thread Tom Keffer
Yes. It looks like this driver has not been ported to Python 3. You would have to use Python 2. On Sat, Jun 20, 2020 at 10:49 AM Maarten van der Hoeven wrote: > Hi, > > I tried to connect to weatherlink.com, and used the wlink driver ( > https://github.com/weewx/weewx/wiki/wlink). I am running

[weewx-user] Re: Upgrading from 3.8.0 prior to going to xubuntu 20.04

2020-06-20 Thread Iain Simpson
I'm having to double (or triple) check but I think it's just the 'conky skin and the .conf file that might need to be reconstituted. As long as I can keep the database running. It looks that the best way to update is via the .deb file and do my homework first. Thanks for comments. On

Re: [weewx-user] Suggestions on best way to upgrade to 4.1.1

2020-06-20 Thread Tom Keffer
There seems to be an issue with using owfs with Python 3 under buster. See this thread: https://groups.google.com/d/msg/weewx-user/ntrwrTl1xew/37u0_b7nAgAJ -tk On Fri, Jun 19, 2020 at 10:30 AM michael form wrote: > I have Weewx 3.92 running on a Raspberry Pi3 using One-Wire sensors for > all

Re: [weewx-user] Re: Installation/configuration issues (WeeWx on a Raspberry Pi4)

2020-06-20 Thread Garry A Lockyer
Did you get webpages with the Simulator? Any errors in says log? Regards, Garry Lockyer C: +1.250.689.0686 E: ga...@lockyer.ca > On Jun 20, 2020, at 13:40, Stuart Beaumont wrote: > > Thanks Garry > > I followed those steps with no joy. Then uninstalled and reinstalled. Same > result. >

RE: [weewx-user] Re: Installation/configuration issues (WeeWx on a Raspberry Pi4)

2020-06-20 Thread Stuart Beaumont
Thanks Garry I followed those steps with no joy. Then uninstalled and reinstalled. Same result. Seems to me there is a driver issue. The interceptor driver with either wu-client, observer or ecowitt as the device type doesn’t show any results. The weewx.sdb file is being updated so the

Re: [weewx-user] Unicode/UTF-8 characters no longer translating

2020-06-20 Thread Colin Larsen
Ah, that's brilliant, thanks Tom Cheers Colin On Sun, 21 Jun 2020, 06:29 Tom Keffer, wrote: > It looks like you sorted this problem out yourself, but I thought I'd > explain why your code was not working. > > Under Python 3, all strings are unicode. So, the line > >

[weewx-user] Re: Belchertown no charts

2020-06-20 Thread Manfred Maier
Am Widget habe ich nichts geändert. In der .htaccess Datei auf dem Webserver habe ich folgenden Code eingefügt: # Extra Security Headers Header set Feature-Policy "geolocation 'none'" Bei manchen Browsers (leider nicht bei allen) unterdrückt dieser Code die Standort-Abfrage der Windy-Widgets.

[weewx-user] Re: Upgrading from 3.8.0 prior to going to xubuntu 20.04

2020-06-20 Thread vince
On Friday, June 19, 2020 at 5:42:09 AM UTC-7, Iain Simpson wrote: > > I am wondering whether this is the wisest route or whether to > a. use the '.deb' file and rebuild my customisation. > > What customization are you referring to ? Skins ? Code ? Or just your weewx.conf edits ? -- You received

Re: [weewx-user] unrecognised magic number

2020-06-20 Thread Tom Keffer
>From this thread : try power cycling the console: unplug from usb, remove batteries, wait for > 30 seconds, install batteries, plug in usb. then start weewx. On Fri, Jun 19, 2020 at 6:38 AM Raffaello Bonvino <

Re: [weewx-user] Upgrading from 3.8.0 prior to going to xubuntu 20.04

2020-06-20 Thread Tom Keffer
This would not be a wise move. If you started with a deb install, you should stick with it. Changing to a setup.py install just by changing setup.cfg will not work (there are other differences). Alternatively, you could switch installation methods, but this would require copying some files to

Re: [weewx-user] Unicode/UTF-8 characters no longer translating

2020-06-20 Thread Tom Keffer
It looks like you sorted this problem out yourself, but I thought I'd explain why your code was not working. Under Python 3, all strings are unicode. So, the line weewx.units.default_unit_label_dict['microgramm_per_meter_cubic'] = ' \xce\xbcg/m\xc2\xb3' creates a unicode string with code

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

2020-06-20 Thread Roland Lang
Hi Tom, thank you, this is working now! 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 from it, send an email to weewx-user+unsubscr...@googlegroups.com. To view this discussion

Re: [weewx-user] Re: move from old 3.9 (python2) machine to a new machine running 4.1.1 (python3) with mysql database from 3.9 to 4.1...?

2020-06-20 Thread 'Christian Peters' via weewx-user
Thank you, Graham and Cameron, it took a long time but Graham was on the right track. I check $trend.barometer with an #if condition. This gives N/A for $trend.barometer ...??? This works in P2 and 3.9.x but now not in P3 4.x.x? Changing that to $trend($time_delta=3600).barometer gives a

[weewx-user] Wlink driver not compatible with Python3?

2020-06-20 Thread Maarten van der Hoeven
Hi, I tried to connect to weatherlink.com, and used the wlink driver (https://github.com/weewx/weewx/wiki/wlink). I am running the latest weewx 4.1.1, Python3. I got this error. Does this mean the driver is not ready for Python3? I did some digging, httplib is not available, and should be

[weewx-user] Re: Belchertown no charts

2020-06-20 Thread Geni 0815
Ich verwende Firefox 77.0.1 (64-Bit), die Fehlermeldung kommt aber nur von meiner Seite, bei Deiner gibt es keine! Was ist bei Windy bei dir anders? Am Samstag, 20. Juni 2020 13:08:25 UTC+2 schrieb Manfred Maier: > > Das Widget von Meteoblue ist leider nach unten hin nicht responsive. > Bisher

[weewx-user] Re: Weatherlink IP Discontinued... What are folks using now?

2020-06-20 Thread Maarten van der Hoeven
But -correct me if wrong- WLL is only supplying current records. There is not an archive available to pull previous records from. In other words, if for some reason WeeWX is not running for a day, and you fire it up again, you cannot retrieve the previous records anymore, as was the case with

[weewx-user] Re: Weatherlink IP Discontinued... What are folks using now?

2020-06-20 Thread galfert
You could also ge the Davis WeatherLink Live and use that with WeeWX. You need the WLL driver: https://github.com/jonotaegi/weewx-wll One nice thing about the WLL is that you can then also run other software simultaneously on the same or different system as WeeWX. In case you also wanted to

[weewx-user] Re: move from old 3.9 (python2) machine to a new machine running 4.1.1 (python3) with mysql database from 3.9 to 4.1...?

2020-06-20 Thread Cameron D
One other possibility - I notice the developer of Responsive skin is still running 3.9.2. Perhaps there is something about the skin that needs updating for Python 3. -- You received this message because you are subscribed to the Google Groups "weewx-user" group. To unsubscribe from this

Re: [weewx-user] Re: move from old 3.9 (python2) machine to a new machine running 4.1.1 (python3) with mysql database from 3.9 to 4.1...?

2020-06-20 Thread Graham Eddy
suggest you look in index.html.tmpl for an expression of the form #if x > y, where x could produce value None and y is an int. g-eddy > On 20 Jun 2020, at 10:30 pm, Cameron D wrote: > > Hi Christian, > That error has me lost. I use only a heavily modified Seasons skin, which I > migrated by

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

2020-06-20 Thread Tom Keffer
Right you are! Thanks, Joachim. I've created issue #576 to track. -tk On Sun, Jun 14, 2020 at 1:57 AM Joachim Puttkammer wrote: > Hallo, > > I noticed that after a "sudo wee_config --reconfigure" in the weewx.conf > the lines in the [[Defaults]]

[weewx-user] Re: move from old 3.9 (python2) machine to a new machine running 4.1.1 (python3) with mysql database from 3.9 to 4.1...?

2020-06-20 Thread Cameron D
Hi Christian, That error has me lost. I use only a heavily modified Seasons skin, which I migrated by merging my changes into the new skin folder. I have trimmed out all the references to data I do not have, mainly to make it easier to follow, and perhaps get a tiny improvement in efficiency.

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

2020-06-20 Thread Tom Keffer
Roland, Could you please replace the file user/wetter.py with this one, then try again? -tk On Sun, Jun 14, 2020 at 3:11 AM Roland Lang wrote: > Hi, > yesterday I updated my weewx installation from python2 to python3. The > Upload to wetter.com fails now with following error (but weewx keeps

[weewx-user] Re: Belchertown no charts

2020-06-20 Thread Manfred Maier
Das Widget von Meteoblue ist leider nach unten hin nicht responsive. Bisher ist Meteoblue aber die beste und schönste Vorhersage, die ich gefunden habe. Sowohl DarkSky als auch Aeris liegen hier bei mir von den Vorhersagen her leider deutlich daneben. Die Fehlermeldung von Windy bekomme ich

[weewx-user] Wmr200: read_device() USB Error Reason:[Errno 110] Operation timed out

2020-06-20 Thread Alessandro
Hello all, firstly thanks so much for your work! As newbie, I'm having a problem running Weewx on Raspi 4 and Wmr200 as weather station. I installed weewx 3 days ago, and already I have received the error (attached below) twice, that has blocked weewx. I have solved rebooting the Raspi, but I

[weewx-user] Re: Belchertown no charts

2020-06-20 Thread Geni 0815
Auf dem Handy wird aber abgeschnitten! warum kommt die Fehlermeldung von Windy Am Samstag, 20. Juni 2020 11:29:05 UTC+2 schrieb Manfred Maier: > > Responsive ist es bei mir auch nur in Grenzen. > Es gibt eine minimale Breite, ab der das Widget dann abgeschnitten wird. > Nur nach oben hin

[weewx-user] Re: Belchertown no charts

2020-06-20 Thread Manfred Maier
Responsive ist es bei mir auch nur in Grenzen. Es gibt eine minimale Breite, ab der das Widget dann abgeschnitten wird. Nur nach oben hin skaliert es schön. geni08...@gmail.com schrieb am Samstag, 20. Juni 2020 um 10:21:01 UTC+2: > @Manfred > Der Eintrag gemäss deinen Angaben funktioniert aber

[weewx-user] Re: move from old 3.9 (python2) machine to a new machine running 4.1.1 (python3) with mysql database from 3.9 to 4.1...?

2020-06-20 Thread 'Christian Peters' via weewx-user
Hi Caeron, damn...yestheat was obvious. It works now. Thank you very much But Python3 seems not as lazy as Python2, now I got this and weewx stops generating the webpage: Generate failed with exception '' Jun 20 11:00:56 weewx weewx[25088] ERROR weewx.cheetahgenerator: Ignoring

[weewx-user] Re: move from old 3.9 (python2) machine to a new machine running 4.1.1 (python3) with mysql database from 3.9 to 4.1...?

2020-06-20 Thread Cameron D
Hi Christian, sorry, I forgot the bit where you also need to rename your main schema from "schema" to "table". Don't worry about adding columns just in case you might need them in future - with mysql you can add them any time you need. It is rather more flexible than sqlite about altering

[weewx-user] Re: move from old 3.9 (python2) machine to a new machine running 4.1.1 (python3) with mysql database from 3.9 to 4.1...?

2020-06-20 Thread 'Christian Peters' via weewx-user
Cameron, this doesn't work. I copied my database to the new machine, made a new weewx database and replayed it. If I use the wview_extended.py from the 2.5.-3.9 weewx install, it seems to work. If I add the new additional lines form the 4.0.0. at the end of the wview_extended.py file...

[weewx-user] Re: Belchertown no charts

2020-06-20 Thread Geni 0815
@Manfred Der Eintrag gemäss deinen Angaben funktioniert aber nicht Responsiv, irgendwie bekommt das iframe die benutzte breite nicht mit. Hast du eine Idee? Am Freitag, 19. Juni 2020 13:14:23 UTC+2 schrieb Manfred Maier: > > Ist bei mir in der index_hook_after_charts.inc drin. > > > 1) Datei

[weewx-user] Re: Belchertown no charts

2020-06-20 Thread Geni 0815
I changed the 2 lines and now it also works with de_CH local setting. I also adjusted the gapSize because my interval is 10min. So far it goes now, but I would have the time window of the last 24 hours in the day view and not a start at midnight. Could I get the example of the rain? Am Freitag,

[weewx-user] Problem with rtl_433

2020-06-20 Thread Sean Jahnig
Hi, Has anyone experienced a problem with rtl_433 / rtl-sdr on a raspberry pi where the USB device becomes unreadable? I have acurite 5-n-1 with sdr and a raspberry pi. Things have been working fine but all of a sudden the rtl_433 driver is not receiving packets so weewx is not receiving