Re: [weewx-user] Re: New to weewx, AW WS-2000

2021-01-11 Thread George Morgan
Yes, I was able to view the live data page but it only shows the sensors directly attached to the GW1000 so I figure it is getting too much RF interference to pick up my T (WH-31?) and THP (WH-32B) sensors. I still haven't decided where to mount the main sensor array from the WS-2000...I really

Re: [weewx-user] NWS Radar Changes

2021-01-11 Thread Ralph Underwood
Anybody able to make the new and improved NWS radar work? Has anyone written code to build a dynamic link for the aviation weather radar? It appears to me that we need to enter date and time into the url for the radar. I copied the aviation radar link into my skin.conf and it appeared to

Re: [weewx-user] Independent weewx backup script

2021-01-11 Thread vince
Way back in 2014 (wow) when we had that long thread about this, many of us checked our hundreds of backups with 'pragma integrity_check' and never found any that were not restorable, so I'm pretty ok with taking that risk still. On Monday, January 11, 2021 at 5:26:08 PM UTC-8 Tom Keffer wrote:

Re: [weewx-user] Independent weewx backup script

2021-01-11 Thread Graham Eddy
i use ‘cp’. heck, i use ‘scp’… i just make sure i work in the window from 2 mins after archive interval (long after my archive updates are completed) to a few secs before next archive interval. could make BACKUP a new built-in report like FTP and RSYNC - unless want to make backup independent

Re: [weewx-user] Independent weewx backup script

2021-01-11 Thread Tom Keffer
I actually think 'cp' is pretty safe. When WeeWX writes a record to the database, it has to update the main archive, as well as many daily summaries. To make sure this is all done atomicallly, it does it as one big transaction. So, unless your 'cp' has the unfortunate timing of happening at the

Re: [weewx-user] Independent weewx backup script

2021-01-11 Thread vince
For for 1,357,184 records in the db records in my 340 MB database's archive table Using Tom's variant from a local file to a backup file in the same working directory Dockstar = 46.8 secs via python, 35.1 secs to cp (usb2 laptop drive) pi3 = 44.3 secs via python,

Re: [weewx-user] Independent weewx backup script

2021-01-11 Thread Tom Keffer
The program can be simplified even more: import sqlite3 with sqlite3.connect('/home/weewx/archive/weewx.sdb') as original: with sqlite3.connect('/home/weewx/archive/weewx.sdb.backup') as backup: original.backup(backup, pages=10) I'm finding that the time it takes to do the backup

Re: [weewx-user] Independent weewx backup script

2021-01-11 Thread Graham Eddy
as a once-off i did nothing fancy, even hard-coding the number of pages and filename of database (trivial to fiddle), using shell time to measure elapsed time import sqlite3 con = sqlite3.connect('/opt/weewx-4.2.0-test/archive/weewx.sdb') bck = sqlite3.connect('backup.db') with bck:

Re: [weewx-user] Question on Weewx, Vantage Vue, and CWOP

2021-01-11 Thread Nate Bargmann
* On 2021 11 Jan 16:09 -0600, Tom Keffer wrote: > If you're concerned about the distance to the airport, you can take your > console to the airport --- it's battery powered. Well, that seems like a novel idea! :-) Wouldn't doing so take a few hours? The Davis literature appears to suggest so.

Re: [weewx-user] Using Sofaskin wrong date format

2021-01-11 Thread PJO
Update: suddenly started working ok for me with no changes; browser cache issue perhaps. On Monday, January 11, 2021 at 10:37:25 PM UTC PJO wrote: > I have set up a new copy of v4.3 on Ubuntu alongside an updated existing > installation running on Raspbian, both using a modified copy of

Re: [weewx-user] Re: New to weewx, AW WS-2000

2021-01-11 Thread 'Rainer Lang' via weewx-user
Whether the GW1000 picks up your sensors or not, you can very simply verify by choosing your GW1000 from the WSView Device list. One entry will read GW1000-WIFI. That's the one to press. As a result you will see the live data of the connected sensors. Am 11. Januar 2021, um 16:45, schrieb

Re: [weewx-user] Using Sofaskin wrong date format

2021-01-11 Thread PJO
I have set up a new copy of v4.3 on Ubuntu alongside an updated existing installation running on Raspbian, both using a modified copy of Sofaskin. Default date and time formats follow the locale setting on Raspbian but not on Ubuntu (20.04.1). Don't see how it can be anything to do with

Re: [weewx-user] 4..2 to 4.3 not running

2021-01-11 Thread Mauro De Lauretis
Tom, it started working after waiting 25 minutes :-) Thank you anyway for your answer and have a nice evening. Mauro Il giorno lunedì 11 gennaio 2021 alle 23:13:19 UTC+1 tke...@gmail.com ha scritto: > How long did you wait? It can take a few minutes to recalculate weights. > It is especially

Re: [weewx-user] 4..2 to 4.3 not running

2021-01-11 Thread Tom Keffer
Try again, but this time run it directly from a terminal . This way, it will print out its progress. On Mon, Jan 11, 2021 at 2:19 PM Mauro De Lauretis < mauro.delaure...@gmail.com> wrote: > Then I think it's my fault of patience. > I

Re: [weewx-user] 4..2 to 4.3 not running

2021-01-11 Thread Mauro De Lauretis
Then I think it's my fault of patience. I waited at least 15 minutes, but watching the debug I think there's nothing strange at the moment. Do you think it may take longer? Thanks for reply Mauro Il giorno lunedì 11 gennaio 2021 alle 23:13:19 UTC+1 tke...@gmail.com ha scritto: > How long

Re: [weewx-user] 4..2 to 4.3 not running

2021-01-11 Thread Tom Keffer
How long did you wait? It can take a few minutes to recalculate weights. It is especially slow with mysql. On Mon, Jan 11, 2021 at 1:58 PM Mauro De Lauretis < mauro.delaure...@gmail.com> wrote: > Hi, > after updating my RPi to 4.3 version I get this debug and nothing more > happens: > > Jan 11

Re: [weewx-user] Question on Weewx, Vantage Vue, and CWOP

2021-01-11 Thread Tom Keffer
If you're concerned about the distance to the airport, you can take your console to the airport --- it's battery powered. In addition to my Vantage, I have a precision barometer that I use for sailing (±0.25 hPa precision). I've calibrated it against the Portland airport, which is very close to

[weewx-user] 4..2 to 4.3 not running

2021-01-11 Thread Mauro De Lauretis
Hi, after updating my RPi to 4.3 version I get this debug and nothing more happens: Jan 11 22:52:47 raspberrypi weewx[1471] INFO __main__: Initializing weewx version 4.3.0 Jan 11 22:52:47 raspberrypi weewx[1471] INFO __main__: Using Python 3.7.3 (default, Jul 25 2020, 13:03:44) #012[GCC

Re: [weewx-user] Question on Weewx, Vantage Vue, and CWOP

2021-01-11 Thread Nate Bargmann
* On 2021 10 Jan 20:02 -0600, Tom Keffer wrote: > The note *Derived variables > * > from > Davis has a pretty good discussion of this. Thanks, Tom. I have a Vantage Pro2 and I see this: $

[weewx-user] Re: Windy Map in Belchertown Skin

2021-01-11 Thread Paul Eaton
Hi kk44 try this By accident I found I could get the Windy weather forecast on the Windy radar map by adding my station position marker. This is one of the options listed in the General Options table on the README.md page for Belchertown on GitHub. To do this you need to modify the

[weewx-user] weewx Treiber and SDR driver simultan ?

2021-01-11 Thread Frank
Hi there I'm currently working with rtl_433 ... Can my WS3080 weather station run via fousb and at the same time my USB STICK rtl_433 on a Weewx After reconfiguring the config during installation, I had the following station type: SDR and no station_type = FineOffsetUSB anymore, and so the

Re: [weewx-user] Independent weewx backup script

2021-01-11 Thread vince
On Monday, January 11, 2021 at 5:03:14 AM UTC-8 graha...@gmail.com wrote: > conclusion: only seriously under-powered boxes would be unable to complete > within typical 300 sec archive interval. > would be good if someone with such a box gave it a try > > If you can point us at the exact script

[weewx-user] Reports suddenly stopped working

2021-01-11 Thread icoj...@gmail.com
Hi, I'm hoping someone can help me as I am not technical enough to understand log files and to troubleshoot other than the basics. It appears that on the afternoon of 5th Jan my weewx reports stopped generating. The webpage still displays, but the data remains as at 5th Jan and it is

Re: [weewx-user] Re: New to weewx, AW WS-2000

2021-01-11 Thread George Morgan
Yes, I used ws view on Android from the Play Store. After a little while the app asked if I wanted to update the firmware to 1.6.3 and I did. That seemed to work fine. The GW1000 is joined to my network but I don't think it is picking up any sensors yet. On Sun, Jan 10, 2021, 11:16 PM Bill

Re: [weewx-user] weewx skipping report cycles

2021-01-11 Thread bell...@gmail.com
I’m no expert on the SDR driver (I don’t even use it) nor WeeWX expert, but it looks to me like there are gaps where no data is being received. I have filtered the log to show the packets being created by the SDR driver and the reports being run. Skipping a lot of detail, every time a

Re: [weewx-user] Independent weewx backup script

2021-01-11 Thread Graham Eddy
looking at https://sqlite.org/backup.html (extract below; my emphasis), the Backup API restarts the backup if an update (not a read) occurs during the backup → might silently never complete if backup takes longer than archive interval. this could be dealt with

Re: [weewx-user] Ecowitt WH55 leak detector

2021-01-11 Thread gjr80
Hi Paul, Thanks for the offer. I have sent you an email with the details I am after and the commands to run. regards, Gary On Sunday, 10 January 2021 at 22:46:51 UTC+10 pa...@pauland.net wrote: > Hi Gary, > Just installed a WH55 leak detector yesterday. I have GW1000 driver > Version: 0.2.0