[weewx-user] Re: error 401 with import WU

2021-01-18 Thread Sébastien F4GQK
Hello, Thanks for your help, I had put the password in my wd.conf file instead of the api key Seb Le lundi 18 janvier 2021 à 00:27:53 UTC+1, gjr80 a écrit : > I should also add can you double check your API key in /var/tmp/wu.conf > is correct by confirming it against the API key listed

Re: [weewx-user] refresh screen

2021-01-18 Thread John Smith
I get the same error occasionally, which is annoying as it stops the page from loading/refreshing, but it's a temp error which can be ignored. On Tue, 19 Jan 2021 at 04:28, sali...@gmail.com wrote: > hi, > I have sometime this error message when there is the screen refresh > > my Firefox

[weewx-user] Re: GW1000 driver v0.2.0 release

2021-01-18 Thread gjr80
On Tuesday, 19 January 2021 at 09:42:36 UTC+10 ward...@gmail.com wrote: > I've just got my WH45 and its working great with new driver thanks Gary. > I've noticed that the CO2 internal temp & humidity are coming through as > the curiously named "extraTemp17" and "extraHumid17" does that sound

[weewx-user] Re: 4.1.1 - No module named 'Image'

2021-01-18 Thread vince
On Monday, January 18, 2021 at 7:17:27 PM UTC-8 cql...@gmail.com wrote: > As for your question, I've set up an nfs share mounted to all 3 pi's, and > created a persistent volume for my archive and frontend. While I haven't > yet persisted my logs, that's probably a good idea, and wouldn't be

[weewx-user] Re: Database Backup File not a Database Error

2021-01-18 Thread vince
On Monday, January 18, 2021 at 6:47:09 PM UTC-8 kdch...@gmail.com wrote: > Now when I try to copy the unpacked sdb and pick up where I left off I get > a message that the file is not a database. I have tried a couple of > archives from Dec and Jan. All seem to be no good. I did notice that

[weewx-user] Re: 4.1.1 - No module named 'Image'

2021-01-18 Thread cql...@gmail.com
You're absolutely right - and this is the consequence of building off of someone else's docker image! Had I started the process from scratch, I probably would have started with a more fully featured base image. As for your question, I've set up an nfs share mounted to all 3 pi's, and created a

[weewx-user] Re: 4.1.1 - No module named 'Image'

2021-01-18 Thread vince
Your underlying issue is that you used a k8s image based on alpine and python3-slim, so it's minimal and doesn't have the build requirements for doing the pip install of Pillow. That should be somewhat expected. Unfortunately that's part and parcel of running minimal docker images. I

[weewx-user] Re: Multiple Weather Stations w/Fedora

2021-01-18 Thread vince
On Monday, January 18, 2021 at 5:11:03 PM UTC-8 Matt R wrote: > Hi all, wondering if anyone has been able to get multiple weather stations > running using a RedHat based distro (CentOS, Fedora, etc)? > > I'd say "some assembly required" for RH-based distros. The weewx-multi script that comes

[weewx-user] Re: 4.1.1 - No module named 'Image'

2021-01-18 Thread cql...@gmail.com
After spending time in the Pillow github issues, I ended up getting this working by installing several packages: *RUN apt-get install zlib1g-dev libjpeg-dev build-essential -yRUN python -m pip install Pillow* This allows me to install pillow, have it recognized by python, and therefore

[weewx-user] Database Backup File not a Database Error

2021-01-18 Thread Kevin Chapman
Hello, I recently experienced a crash of weewx version 4.2.0. I am still on the default Sqlite database. I have been backing it up nightly since around November of last year. Noob mistake is that I assumed the database file backups were good. My backup routine consisted of stopping weewx,

Re: [weewx-user] Re: Rain Rate Calc Problem?

2021-01-18 Thread Neville Davis
Hi using SELECT dateTime,rain,rainRate FROMarchive WHERE rain>0 order by dateTime desc limit 200; the last 200 records for rain On Tuesday, January 19, 2021 at 12:31:55 PM UTC+10 Neville Davis wrote: > Hi > > Using sequel pro > > SELECT dateTime,rain,rainRate > FROMarchive > WHERE

Re: [weewx-user] Re: Rain Rate Calc Problem?

2021-01-18 Thread Neville Davis
Hi Using sequel pro SELECT dateTime,rain,rainRate FROMarchive WHERE rainRate>0 order by dateTime desc limit 50; On Tuesday, January 19, 2021 at 11:55:55 AM UTC+10 Neville Davis wrote: > Hi > installed sqlite3 but when run I get nothing printed. the same query with > rain I also get

Re: [weewx-user] Re: Rain Rate Calc Problem?

2021-01-18 Thread Neville Davis
Hi installed sqlite3 but when run I get nothing printed. the same query with rain I also get nothing printed, it just returns to sqlite3 prompt. Nothing on console, user logs etc I am going to try the same query to see if I can get the data using Sequel Pro. I use this app to check my db

Re: [weewx-user] Re: New internet provider - now ftp doesn't work

2021-01-18 Thread Tom Keffer
Well, that sucks. It works nicely on my end. So, it must be something on your end. Perhaps your firewall, or some IPv6 issue, which I am totally unqualified to diagnose. The only thing I can suggest is to try testing your connection to see if it is IPv6 ready: https://test-ipv6.com/ Other than

Re: [weewx-user] Re: New internet provider - now ftp doesn't work

2021-01-18 Thread Rich Strle
No joy I tried reuse_ssl = True here: # To upload files from something other than what HTML_ROOT is set # to above, specify a different HTML_ROOT here. #HTML_ROOT = /var/www/html/weewx reuse_ssl = True # Most FTP servers use port 21 port = 21

[weewx-user] Multiple Weather Stations w/Fedora

2021-01-18 Thread Matt R
Hi all, wondering if anyone has been able to get multiple weather stations running using a RedHat based distro (CentOS, Fedora, etc)? I've been able to successfully run multiple with a Debian distro leveraging Matthew Wall's weewx-multi script here:

Re: [weewx-user] Re: Rain Rate Calc Problem?

2021-01-18 Thread Tom Keffer
Your weewx.conf seems to be configured correctly. And, it's definitely "rainRate" (not "rainrate"). Let's take a look at the database, using the tools sqlite3. You may have to install it: *sudo apt install sqlite3* *sqlite3 /home/weewx/archive/weewx.sdb* sqlite> *select

Re: [weewx-user] Re: New internet provider - now ftp doesn't work

2021-01-18 Thread Tom Keffer
[Rich sent me his credentials via a private email.] As soon as I tried FTP to Rich's server, I recognized the problem. The server is using Pure-FTPd, which reuses SSL connections. The Python library has a bug

[weewx-user] Re: GW1000 driver v0.2.0 release

2021-01-18 Thread Paul Ward
I've just got my WH45 and its working great with new driver thanks Gary. I've noticed that the CO2 internal temp & humidity are coming through as the curiously named "extraTemp17" and "extraHumid17" does that sound right? Also FYI at some point wiki sensor map page will need updating :-) On

Re: [weewx-user] Errors in 4.3

2021-01-18 Thread Tom Keffer
If you're on buster, then it's simple enough to switch to Python 3. Basically, just follow the directions in the Debian guide : wget -qO - https://weewx.com/apt/weewx-python3.list | sudo tee /etc/apt/sources.list.d/weewx.list sudo apt-get update sudo apt-get

Re: [weewx-user] Re: New internet provider - now ftp doesn't work

2021-01-18 Thread Rich Strle
Status: Resolving address of www.cliffandbuster.com Status: Connecting to 107.180.51.77:21... Status: Connection established, waiting for welcome message... Status: Initializing TLS... Status: Verifying certificate... Status: TLS connection established. Status: Logged in Status: Retrieving

Re: [weewx-user] Errors in 4.3

2021-01-18 Thread Clay Jackson
Don't know WHERE I got Squeeze - just checked and confirmed; it's Buster, so would definitely like to at least try to get rid of python 2. On the rain = prefer_hardware, I looked at my old config files, and it seems it's "bounced" back and forth, probably depending on what version of sdr I

Re: [weewx-user] Register your WeeWX station!

2021-01-18 Thread salinois
ok Tom I saw your post about the picture in Weewx Map Station bye Patrick Le 17/01/2021 à 17:18, Tom Keffer a écrit : Patrick, not sure what you are referring to. The discussion above about providing a .png file is just a proposal. On Sun, Jan 17, 2021 at 8:07 AM salinois

[weewx-user] refresh screen

2021-01-18 Thread sali...@gmail.com
hi, I have sometime this error message when there is the screen refresh my Firefox browser is up todate !! do you know this issue ? thanks patrick -- You received this message because you are subscribed to the Google Groups "weewx-user" group. To unsubscribe from this group and stop

Re: [weewx-user] Re: ERROR weewx.cheetahgenerator: **** MemoryError

2021-01-18 Thread garrya...@gmail.com
Thanks! I think I've done all that I can to isolate the problem. I'm going to get back to finishing up development and add a cron entry to restart WeeWX every 24 hours in the wee hours of the morning. I will be re-deploying a Davis Pro 2 system very soon (within the week) and then deploying

Re: [weewx-user] Re: New internet provider - now ftp doesn't work

2021-01-18 Thread Tom Keffer
That's pretty much what I'm thinking, but I'm trying to get the evidence from Filezilla. It should say that as it negotiates with the server. FTP is 40 year old technology. It's amazing that there are still so many incompatible versions out there. On Mon, Jan 18, 2021 at 8:34 AM Les Niles

Re: [weewx-user] Re: New internet provider - now ftp doesn't work

2021-01-18 Thread Les Niles
The server is responding to the PASV command by entering extended passive mode EPSV, which apparently is a legal response but which weewx/ftplib is not handling correctly. (I don’t have access to the code right now so can’t be more precise about where to fix.) The difference is that in EPSV

Re: [weewx-user] Re: New internet provider - now ftp doesn't work

2021-01-18 Thread Tom Keffer
What we want to see is the earlier chatter: where the client negotiates with the server. On Mon, Jan 18, 2021 at 7:21 AM Rich Strle wrote: > Command: TYPE I > Trace: CFtpControlSocket::OnReceive() > Response: 200 TYPE is now 8-bit binary > Trace: CFtpRawTransferOpData::ParseResponse() in state

Re: [weewx-user] Re: New internet provider - now ftp doesn't work

2021-01-18 Thread Rich Strle
Command: TYPE I Trace: CFtpControlSocket::OnReceive() Response: 200 TYPE is now 8-bit binary Trace: CFtpRawTransferOpData::ParseResponse() in state 1 Trace: CControlSocket::SendNextCommand() Trace: CFtpRawTransferOpData::Send() in state 2 Command: PASV Trace: CFtpControlSocket::OnReceive()

Re: [weewx-user] Re: FINE OFFSET WH2900 / Ambient Weather WS-2902

2021-01-18 Thread S R
i put in the network network, but i can't get the interceptor.py debug to run. keeps falling over on the driver import line On Monday, January 18, 2021 at 12:14:07 PM UTC+1 lang@googlemail.com wrote: > I suggest that you first get weewx running with the interceptor driver in > a simple

Re: [weewx-user] Re: New internet provider - now ftp doesn't work

2021-01-18 Thread Tom Keffer
Good to hear that Filezilla is working. We can use it to understand what the server is doing. Using Filezilla, go into its "Settings" (under the "Edit" menu). Then the "Debug" tab. There's a drop down list of message levels. Default is "0 - None". Set it to "3- Verbose". Then click "OK". [image:

Re: [weewx-user] Re: FINE OFFSET WH2900 / Ambient Weather WS-2902

2021-01-18 Thread Rainer Lang
I suggest that you first get weewx running with the interceptor driver in a simple "normal" test environment. e.g. weewx host and console in the same subnet, no other fancy network and virtualization constructions. Once that works, start changing step by step the test environment towards your

Re: [weewx-user] Re: FINE OFFSET WH2900 / Ambient Weather WS-2902

2021-01-18 Thread S R
I see in interceptor.py the default interface is DEFAULT_IFACE = 'eth0' if i do ifconfig in the shell to the jail, the interface is 'epair0b' should i be changing the interface? still can't the debug to work. On Monday, January 18, 2021 at 8:55:28 AM UTC+1 S R wrote: > i figured out the

[weewx-user] Re: 4.1.1 - No module named 'Image'

2021-01-18 Thread cql...@gmail.com
Good point. Here are the startup logs - looks like it is running the python version I was expecting: 3.9.0. (Makes sense since the base docker image is a python 3 base image) On Sunday, January 17, 2021 at 10:37:08 PM UTC-6 gjr80 wrote: > Appreciate you have