[weewx-development] rtldavis not getting any package

2022-07-19 Thread Guido Cioni
I have installed rtldavis as advised here https://github.com/lheijst/rtldavis and also took care of compiling my own librtlsdr as advised here https://groups.google.com/g/weewx-development/c/L5Lt8x87I_s/m/PP5AdFnQAQAJ. After doing that I don't get anymore the message "Allocating 1 zero-copy

Re: [weewx-development] rtldavis not getting any package

2022-07-19 Thread Guido Cioni
is indeed working. I'm indeed in the EU so the frequency should be good (the ISS is also the EU version). *Guido Cioni* On Tue, Jul 19, 2022 at 1:56 PM Greg Troxel wrote: > > [I'm answering here, but really this belongs on -users!] > > Guido Cioni writes: > > > I ha

Re: [weewx-development] rtldavis not getting any package

2022-07-21 Thread Guido Cioni
, July 19, 2022 at 2:31:18 PM UTC+2 Guido Cioni wrote: > I also tried to do a quick scan with the dongle and I can indeed see the > transmission from the ISS, only rtldavis is not able to get it > > here is the waterfall from the dongle > > [image: Screen Shot 2022-07-

[weewx-development] Re: Backing up the db using an asynchronous Python-Pandas plugin

2022-07-28 Thread Guido Cioni
>From what I understand weewx uses sqlite because of the default, and with sqlite the only possibility is to dump the whole database every time (https://github.com/glennmckechnie/weewx-sqlbackup/wiki/SQLBackup-README), which is obviously time consuming. With Pandas you can get around that by

Re: [weewx-development] Re: Backing up the db using an asynchronous Python-Pandas plugin

2022-07-28 Thread Guido Cioni
s so little amount of > data each day. > > Just my $0.02 > > DDJ > > On Thu, Jul 28, 2022 at 10:27 AM Guido Cioni wrote: > >> From what I understand weewx uses sqlite because of the default, and with >> sqlite the only possibility is to dump the whole dat

Re: [weewx-development] rtldavis not getting any package

2022-07-21 Thread Guido Cioni
So, I finally got it. After using a constant frequency shift of 5 Hz (with the option -fc) I was able to receive all the packages. It seems not to miss any measurement which is really good! On Thursday, July 21, 2022 at 12:38:01 PM UTC+2 Guido Cioni wrote: > Ok I've solved the issue by

Re: [weewx-development] Re: Receiving Davis Vantage data with RTL-SDR dongle and program rtldavis

2022-07-27 Thread Guido Cioni
Been using weewx-rtldavis for a few weeks now and I'm super happy with the performance. I receive the data from a Davis Vantage Vue ISS only. However, there are a few things that I cannot figure out - The fraction of missed packages/good packages is not saved into the database:

[weewx-development] Backing up the db using an asynchronous Python-Pandas plugin

2022-07-28 Thread Guido Cioni
I've been looking for a solution to backup my db directly inside weewx without calling external cronjobs. The backup will be done on a SQL database running on another server. For this reason I don't want to make a physical copy of the DB but instead copy only the rows that are not on the remote

Re: [weewx-development] Re: Backing up the db using an asynchronous Python-Pandas plugin

2022-08-07 Thread Guido Cioni
Well...space and bandwidth may be an issue in remote installations, like the one that I have, where everything get through a metered connection. That's why I'm trying to find a way to transmit only the data that I have to transmit every time to backup: this way I could backup more frequently.