Re: [weewx-user] Re: Unable to publish to previmeteo

2022-06-30 Thread Kruse Ludington
1. Yes I am new to Linux! 2. The file is already in the current directory that I am already in - I placed it there beforehand. Hope that helps and look forward to hearing more details from you soon! Best Regards, -R. Kruse Ludington (M): +1.201.925.4410 (O): +1.862.308.7040 (H):

Re: [weewx-user] Re: Unable to publish to previmeteo

2022-06-30 Thread vince
I'm guessing you're a new Linux user perhaps (?) If you run "sudo wee_extension --install something.tar.gz" then the file something.tar.gz has to be in the same directory you are currently cd'd into in your shell session.If it's somewhere else, you can specify "sudo wee_extension

Re: [weewx-user] Re: Unable to publish to previmeteo

2022-06-30 Thread Glenn McKechnie
I've just run through those instructions here and it works for me. What directory are you in, the one that you are running that command from? Does it contain the file weewx-previmeteo-v0.1.tar.gz ? wee_extension is running okay, it just complains about a read error for the target file - "file

RE: [weewx-user] Re: Unable to publish to previmeteo

2022-06-30 Thread rkludington
Well here are the two attempts…. All the other extensions worked fine for me (I did have to use sudo for those as well) but they were all zip files. As this one is a ‘tar.gz’ am I missing the utility for doing so on my rpi maybe? – or I was searching around and is it possible someone tried to

RE: [weewx-user] Re: Unable to publish to previmeteo

2022-06-30 Thread rkludington
I’ll give them both a shot - thanks -Kruse (M): +1.201.925.4410 (O): +1.862.308.7040 (H): +1.201.857.8307 (F): +1.201.857.7188 From: weewx-user@googlegroups.com On Behalf Of vince Sent: Thursday, June 30, 2022 10:20 PM To: weewx-user Subject: [weewx-user] Re: Unable to

[weewx-user] Re: Unable to publish to previmeteo

2022-06-30 Thread vince
If you did a package install of weewx, try "sudo wee_extension --install weewx-previmeteo-v0.1.tar.gz", assuming you are in the same working directory as the .tar.gz file If you did a setup.py install of weewx, it would be "sudo /home/weewx/bin/wee_extension --install

[weewx-user] Interceptor Driver Question (Observer mode)

2022-06-30 Thread Kruse Ludington
This has not ben updated in years and I am wonering if these errors can be fixed so I can start capturing this data in the DB instead of throwing it away? My station is an AmbientWeather WS-2902C. The driver works fine and everything is as expected except those extra fields are never processed

[weewx-user] Unable to publish to previmeteo

2022-06-30 Thread Kruse Ludington
Regarding this: https://github.com/previmeteo/weewx-previmeteo#readme Running this: setup.py install --extension weewx-previmeteo-v0.1.tar.gz ends up giving me this error: bash: setup.py: command not found So I also tried…. python3 setup.py install --extension

Re: [weewx-user] Re: Adding more RESTful services for supplying data

2022-06-30 Thread Kruse Ludington
Ok now we're talkin'! Although already in MADIS (via CWOP which is publishing all over the place) via the Weewx RESTful API calls I'm now also publishing to: 1. AWEKAS: https://www.awekas.at/en/instrument.php?id=21459 2. CWOP: http://www.findu.com/cgi-bin/find.cgi?GW1060 3. PWSWEATHER:

Re: [weewx-user] Re: Adding more RESTful services for supplying data

2022-06-30 Thread Kruse Ludington
Ok now we're talkin'! Although already in MADIS (via CWOP which is publishing all over the place) via the Weewx RESTful API calls I'm now also publishing to: 1. AWEKAS: https://www.awekas.at/en/instrument.php?id=21459 2. CWOP: http://www.findu.com/cgi-bin/find.cgi?GW1060 3. PWSWEATHER:

[weewx-user] A tale of two radios (reception issues)

2022-06-30 Thread Clay Jackson
I have two weewx servers running - one for "development" and one that runs my "real" web site. (www.n7qnm.net/weewx).I'm running 4.5.1 on the real site, and 4.8.0 in my dev environment. The two Raspbberry Pi's are located within 10' of each other. On the production system, I have an

Re: [weewx-user] Re: WDC Skin

2022-06-30 Thread David Bätge
I just wanted to inform you that I released v1.3.0 of weewx-wdc, new features are: - Customizable "About page", demo here: https://www.weewx-hbt.de/about.html - Performance (Report Generation) optimization (should be decreased to 50%, please see

Re: [weewx-user] Sunshine Database

2022-06-30 Thread 'Peter Fletcher' via weewx-user
That was going to be my next step! In fact, iterating through a list of the dateTime values that produce the errors in the real code and passing each value to the function confirms that it is the specific dateTime values that are causing the function to misbehave. The returned results are all

[weewx-user] Re: Missing sqlite database in directory

2022-06-30 Thread vince
The linux os won't create the /dev device(s) until something is connected to the pi, which the 'dmesg' command can tell you. A quick search of the weewx archives says that it might matter which wire that came with the meteo pi hat - see (this thread)

Re: [weewx-user] Missing sqlite database in directory

2022-06-30 Thread p q
Might want to try setting up Weewx with the Simulator driver and then switch over to your hardware once you have it running. That way you can separate software issues with connectivity/hardware issues. On Thu, Jun 30, 2022 at 11:54 AM Taro Katayama wrote: > Hello, > > new weewx & raspberry pi

Re: [weewx-user] Sunshine Database

2022-06-30 Thread Jacques Terrettaz
The only clue I have is that the problem is not due to an « overloading » of your raspberry pi, but seems to occur with specific dateTime values. You can try to run your script only with a « bad » dateTime : "SELECT dateTime, Radiation from archive where dateTime = 1592614500 » Does the error

Re: [weewx-user] Sunshine Database

2022-06-30 Thread Karen K
I would try to include a try-except clause around that comparison like that: try: if threshold > maxThreshold: maxThreshold = threshold except ValueError: print(threshold,maxThreshold) and see what the values are. May be one of them is None or NaN. >> --

[weewx-user] Missing sqlite database in directory

2022-06-30 Thread Taro Katayama
Hello, new weewx & raspberry pi zero W user here. I am trying to set up a Davis Vantage with a raspberry pi zero W with a Meteo Pi hat used to communicate between the Vantage and rpi zero w. My rpi is running raspian bullseye Debian 11. I have followed along the weewx user guide, and have

Re: [weewx-user] Sunshine Database

2022-06-30 Thread 'Peter Fletcher' via weewx-user
It did as it seems you predicted - passed 1592614800 and stopped at 1632611100. You obviously have a clue as to what is going on. Please explain! On Thursday, June 30, 2022 at 8:59:48 AM UTC-4 jterr...@gmail.com wrote: > If you exclude the first one,1592614500 , with a query like "SELECT >

[weewx-user] Re: Rest Service for OpenSenseMap

2022-06-30 Thread Kruse Ludington
Is there a more complete example of the config for this for example for an AmbientWeather WS-2902C weather station such that I do not have to reinvent the wheel when I already have it publishing successfully to many other places with weewx - and would not have to spend forever and a day

[weewx-user] Re: unable to upload to weather underground

2022-06-30 Thread vince
On Thursday, June 30, 2022 at 9:31:07 AM UTC-7 enu...@gmail.com wrote: > With debug=2 the only change is Wunderground-PWS: Failed upload attempt 1: > HTTP Error 401: Unauthorized > > Did it work previously ? Did you change anything ? Did you search the group archives for "*Wunderground-PWS:

[weewx-user] Re: unable to upload to weather underground

2022-06-30 Thread Karen K
enu...@gmail.com schrieb am Donnerstag, 30. Juni 2022 um 18:31:07 UTC+2: > With debug=2 the only change is Wunderground-PWS: Failed upload attempt 1: > HTTP Error 401: Unauthorized > Those are all volunteer, who try to help you. If you really want to get help, do, what they request you to do.

[weewx-user] Re: unable to upload to weather underground

2022-06-30 Thread enu...@gmail.com
With debug=2 the only change is Wunderground-PWS: Failed upload attempt 1: HTTP Error 401: Unauthorized El martes, 28 de junio de 2022 a las 22:32:37 UTC+2, gjr80 escribió: > Could be any one of a number of issues, before we can give any specific > advice we really need to see a log extract

Re: [weewx-user] Sunshine Database

2022-06-30 Thread Jacques Terrettaz
If you exclude the first one,1592614500 , with a query like "SELECT dateTime, Radiation from archive where dateTime <> 1592614500", will the script stop at 1592614800 ( the next dateTime) or will it continue and stop at 1632611100 ? > Le 30 juin 2022 à 14:34, 'Peter Fletcher' via weewx-user >

Re: [weewx-user] Sunshine Database

2022-06-30 Thread 'Peter Fletcher' via weewx-user
1592614500 1632611100 1632611400 1647688800 I can't see a pattern or any common features. On Thursday, June 30, 2022 at 3:55:49 AM UTC-4 jterr...@gmail.com wrote: > No, I never had weewx crashes related to the sunshine calculations. > > What are the dateTime values that trigger the error ? >

Re: [weewx-user] Sunshine Database

2022-06-30 Thread jterr...@gmail.com
No, I never had weewx crashes related to the sunshine calculations. What are the dateTime values that trigger the error ? Le mercredi 29 juin 2022 à 23:23:16 UTC+2, Peter Fletcher a écrit : > Have you had any odd weewx errors or crashes related to the sunshine > calculations? I ask because

[weewx-user] Periodic reminder - weewx frequently asked questions (FAQ)

2022-06-30 Thread vince
Just a friendly reminder - please remember to occasionally consult the FAQ for pointers to the most frequently asked questions, where to find the current weewx documentation and wiki, as well as how to best ask questions on the weewx google groups so you can get answers quickly.