Re: [weewx-user] Weewx und Renkforce WH2315

2025-03-19 Thread 'michael.k...@gmx.at' via weewx-user
Deine weewx.sdb (oder wie auch immer dein Datenbankfile heißt) ist kaputt. Ersetze es durch die aktuellste Sicherung und gehe der Ursache (SD-Karte kaputt?) auf den Grund. Günther Wrana schrieb am Mittwoch, 19. März 2025 um 21:45:57 UTC+1: > Hello weewx experts, once again weewx isn't working p

[weewx-user] Re: Belchertown graph in different colors

2025-03-19 Thread MaKi68
Hello, Here https://github.com/poblabs/weewx-belchertown/wiki/Belchertown-Charts-Documentation you can find: Color can be set to change based on the value being displayed. You can specify up to 7 colors. Both the color and the color position must be specified. Once the value rises above a

Re: [weewx-user] Belchertown graph in different colors

2025-03-19 Thread Stefan Gliessmann
Hi MaKi68, Thank you for your feedback. Yes, I did implement the Gauge with different colors. [image: Screenshot 2025-03-19 at 10.09.43.png] Now, I would like to color the line graph on the right with the same colors. That’s where I struggle … Code for the gauge on the left: [[ImainGauge]

Re: [weewx-user] Belchertown graph in different colors

2025-03-19 Thread MaKi68
Hello Stefan, Sorry, but I think with line it doesn't work... LG Manfred Stefan Gliessmann schrieb am Mittwoch, 19. März 2025 um 10:19:38 UTC+1: > Hi MaKi68, > > Thank you for your feedback. > > Yes, I did implement the Gauge with different colors. > > [image: Screenshot 2025-03-19 at 10.09.43.

[weewx-user] Re: weectl import skip existing data?

2025-03-19 Thread vince
Ryan - here's an example. It looks for the first two records from 2024-12-18 starting with 9am localtime. select datetime,datetime(datetime,'unixepoch','localtime') from archive where datetime(datetime,'unixepoch','localtime') like "2024-12-28 09%" limit 2; 1735405200|2024-12-28 09:00:00 17354

[weewx-user] Re: weectl import skip existing data?

2025-03-19 Thread vince
oops - typo'd the field names in multiple places previously. Sorry. I was working off an alternate db with different field names than weewx. This one matches the weewx schema. select dateTime,datetime(dateTime,'unixepoch','localtime') from archive where datetime(dateTime,'unixepoch','localti