Re: [weewx-user] Re: weewx-wdc Skin v3.0.0 available

2023-03-10 Thread Greg from Oz
Yes I have used the Responsive skin. It was the one I was using previously and just thought I would try this skin out and see how it went. I like them both. If I could get the best of each of them onto one skin that would be great. I might have to have a look and see what I can cobble together

Re: [weewx-user] Date/time formatting for aggregation like "maxsum"

2023-03-10 Thread Tom Keffer
Yes, the query is not as optimal as it could be. It's returning the right date, but the time at which maximum rainfall was achieved, rather than midnight. You can solve your problem by applying a formatting. For example, *$week.rain.maxsumtime.format("%A"), $month.rain.maxsumtime("%m/%d/%Y),

Re: [weewx-user] Re: weewx-wdc Skin v3.0.0 available

2023-03-10 Thread Neville Davis
Hi I have used the scripts developed by Darryn Capes-Davis for his responsive skin. I edited this originally to create a single page I could add to any skin..I have had it on a couple. It has proved to be very reliable . Neville On Saturday, March 11, 2023 at 6:33:03 AM UTC+10 Neville Davis

Re: [weewx-user] Re: weewx-wdc Skin v3.0.0 available

2023-03-10 Thread Neville Davis
Hi The i2C sensor Australian BOM info is mine. I have edited the Belchertown skin to include a page with this data…it has worked really well. Currently my system is not updating due to hardware problems. There’s maybe something you can use, I have I think included all the edits required to get

Re: [weewx-user] Where to modify the final timestamp?

2023-03-10 Thread Tom Keffer
I have no idea what I'm looking at there. The requirements for the database are: 1. The first column must be dateTime. 2. The value for dateTime must never be null. Does your database satisfy these two requirements? On Fri, Mar 10, 2023 at 9:57 AM Blaise Cacramp wrote: > The base is

Re: [weewx-user] Where to modify the final timestamp?

2023-03-10 Thread Blaise Cacramp
The base is connected with MS-ACCESS (one of my specialties) and I exploit some data for my energy management (I was 0also energy manager) # -*- coding: utf-8 -*- import mysql.connector from datetime import datetime, timedelta # script éxécuté une fois par jour (à 00:07:30 ?) # version du

Re: [weewx-user] Where to modify the final timestamp?

2023-03-10 Thread Blaise Cacramp
Yes, I added a few columns that I update daily. So far, this was not a problem CREATE TABLE archive (`dateTime` INTEGER NOT NULL UNIQUE PRIMARY KEY, `usUnits` INTEGER NOT NULL, `interval` INTEGER NOT NULL, `altimeter` REAL, `appTemp` REAL, `appTemp1` REAL, `barometer` REAL, `batteryStatus1`

Re: [weewx-user] Where to modify the final timestamp?

2023-03-10 Thread Tom Keffer
Hmmm, you may have a non-standard schema. Try this: *sqlite3 /var/lib/weewx/weewx.sdb* sqlite> *.schema* sqlite> *.quit* On Fri, Mar 10, 2023 at 5:34 AM Blaise Cacramp wrote: > Ok, not null values > Le 10-03-23 à 14:09, Tom Keffer a écrit : > > Do you have a null value for dateTime in your

[weewx-user] Date/time formatting for aggregation like "maxsum"

2023-03-10 Thread michael.k...@gmx.at
When I calculate "maxsum" as the maximum daily rain sum per week/month/year/alltime, I am a bit confused by the output when it comes to formatting the date/time for the value. For me, having a time for a maximum daily sum doesn't make sense in this context. So, How can I solve this? I

Re: [weewx-user] Where to modify the final timestamp?

2023-03-10 Thread Tom Keffer
Do you have a null value for dateTime in your database? Here is how to check.First, make sure you have the tool sqlite3 *sudo apt-get install sqlite3* Then use it to find null values *sqlite3 /var/lib/weewx/weewx.sdb* *sqlite> select dateTime from archive where dateTime isnull;* *sqlite>

Re: [weewx-user] Where to modify the final timestamp?

2023-03-10 Thread PC
J'ai un autre problème : Mar 10 13:43:52 PiMeteo weewx[3486]: Stopping weewx weather system: weewx not running Mar 10 13:43:52 PiMeteo systemd[1]: weewx.service: Succeeded. Mar 10 13:43:52 PiMeteo systemd[1]: Stopped LSB: weewx weather system. Mar 10 13:43:52 PiMeteo systemd[1]: Starting LSB:

Re: [weewx-user] Where to modify the final timestamp?

2023-03-10 Thread Tom Keffer
Classic case of logger corruption. See the wiki: https://github.com/weewx/weewx/wiki/Troubleshooting-the-Davis-Vantage-station#corrupt-station-memory On Fri, Mar 10, 2023 at 12:14 AM PC wrote: > Hello > To follow up on the discussion > https://groups.google.com/u/2/g/weewx-user/c/sl1zgrU0cd0

Re: [weewx-user] Add extra website page for a specific day.

2023-03-10 Thread NikoFresh
Thanks, I was able to put everything together generating multiples days and manually editing the html page. It still need some work but I'm happy with the result . Il giorno venerdì 10 marzo 2023 alle 03:30:29 UTC+1 Tom Keffer ha scritto:

[weewx-user] hole and blocking in the data statement (archive)

2023-03-10 Thread PC
Hello To follow up on the discussion https://groups.google.com/u/2/g/weewx-user/c/sl1zgrU0cd0 below, I applied the procedure https://forums.raspberrypi.com/viewtopic.php?t=262963#p1608493 Weewx resumed life but with a constant delay not arranging and with a "hole" of a week from February 28. I

[weewx-user] Where to modify the final timestamp?

2023-03-10 Thread PC
Hello To follow up on the discussion https://groups.google.com/u/2/g/weewx-user/c/sl1zgrU0cd0 below, I applied the procedure https://forums.raspberrypi.com/viewtopic.php?t=262963#p1608493 Weewx resumed life but with a constant delay not arranging and with a "hole" of a week from February 28. I