On Nov 18, 2025, at 12:51 PM, 'Ron Walker' via weewx-user <weewx...@googlegroups.com> wrote:
Hi All,
I've been through the forum, but have not found an answer to where or even if these files can be found. I understand that the author gjr80 has removed all of his files, but do they exist anywhere else?Thanks in advance!
--
You received this message because you are subscribed to the Google Groups "weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email to weewx-user+...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/weewx-user/919efe6e-1330-41de-983a-3fb686f12d2dn%40googlegroups.com.
On Nov 18, 2025, at 2:19 PM, 'Ron Walker' via weewx-user <weewx...@googlegroups.com> wrote:
Hi John,
To view this discussion visit https://groups.google.com/d/msgid/weewx-user/76782344-bad0-468a-8feb-dc5a2a642a5cn%40googlegroups.com.
On Nov 18, 2025, at 2:19 PM, 'Ron Walker' via weewx-user <weewx...@googlegroups.com> wrote:Hi John,When the report runs, I get the following errors for a number of files with png extension. The first line reports that /var/www/html/weewx/steelseries/index.html.tmp doesn't exist, but it does and permissions are correct. I hope that this makes sense.FileNotFoundError: [Errno 2] No such file or directory: '/ver/www/html/weewx/steelseries/index.html.tmp'
On Nov 18, 2025, at 3:08 PM, 'Ron Walker' via weewx-user <weewx...@googlegroups.com> wrote:
Glen,
--
You received this message because you are subscribed to the Google Groups "weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email to weewx-user+...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/weewx-user/09b53305-b07f-45e9-b4ea-201571e7e359n%40googlegroups.com.
![]() | |
On Nov 18, 2025, at 3:18 PM, 'Ron Walker' via weewx-user <weewx...@googlegroups.com> wrote:
Yes, it is! Perhaps I should take a break! I still need the weewx-realtime_gauge-data!
To view this discussion visit https://groups.google.com/d/msgid/weewx-user/14af5137-9725-42d1-9613-aa3c4a5a265fn%40googlegroups.com.
On Nov 18, 2025, at 5:07 PM, 'Ron Walker' via weewx-user <weewx...@googlegroups.com> wrote:
Ok, I gave it a shot and did the manual install. After modifying the weewx.conf file, I restarted weewx and got the following on restart:
To view this discussion visit https://groups.google.com/d/msgid/weewx-user/96ce6f26-bcb9-4d80-9152-5f9e801c9d87n%40googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/weewx-user/15ca3b1f-2b89-4b48-a16c-ed836067c42dn%40googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/weewx-user/86892fbe-25c6-475d-9749-b123e8c0b0cbn%40googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/weewx-user/c3b725c0-4821-4693-80fd-6f622f3ede0en%40googlegroups.com.
John,I deleted the max_cache_age line and retyped it, in case there was any text I couldn't see.Here is the line you requested:File "/etc/weewx/bin/user/rtgd.py", line 2893
log.info(\u201cts: %s (%s), self.cache[obs][\u2018ts\u2019]: %s (%s), max_age: %s (%s)\u201d % (ts, ts, self.cache[obs][\u2018ts\u2019], self.cache[obs][\u2018ts\u2019], max_age, max_age))
^
SyntaxError: invalid character '\u201c' (U+201C)
On Nov 19, 2025, at 11:25 AM, Glenn McKechnie <glenn.m...@gmail.com> wrote:
--
You received this message because you are subscribed to the Google Groups "weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email to weewx-user+...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/weewx-user/CAAraAzh-rLu4cp56PsxEzM53Mbd6jG9S%3D6mNN08563%2BJ44G%3DHg%40mail.gmail.com.
On Nov 19, 2025, at 1:18 PM, 'Ron Walker' via weewx-user <weewx...@googlegroups.com> wrote:
Glen, John,
--
You received this message because you are subscribed to the Google Groups "weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email to weewx-user+...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/weewx-user/449edf27-cfd2-4050-8700-a368880e9e6fn%40googlegroups.com.
On Nov 19, 2025, at 2:02 PM, 'Ron Walker' via weewx-user <weewx...@googlegroups.com> wrote:
John,
To view this discussion visit https://groups.google.com/d/msgid/weewx-user/5fabfcb7-59e5-46ce-aed8-ff212d348b53n%40googlegroups.com.
The error in your WeeWX log shows a type mismatch in the RealtimeGaugeData extension. The issue is that max_age is being treated as a string instead of an integer when comparing timestamps.
Find the problematic line (around line 2894):
if obs in self.cache and ts - self.cache[obs]['ts'] <= max_age:
Modify it to ensure integer comparison:
if obs in self.cache and ts - self.cache[obs]['ts'] <= int(max_age):Also check the calling function (around line 2908) and ensure the max_age parameter is passed as integer:
packet[obs] = self.get_value(obs, ts, int(max_age))Cheers,Ian
On Nov 19, 2025, at 5:13 PM, 'Ron Walker' via weewx-user <weewx...@googlegroups.com> wrote:
Ian, Glen, John,
--
You received this message because you are subscribed to the Google Groups "weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email to weewx-user+...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/weewx-user/dc5f17d5-1799-468e-bf3f-a76f99d0851an%40googlegroups.com.
On Nov 19, 2025, at 6:53 PM, John Kline <jo...@johnkline.com> wrote:
On Nov 20, 2025, at 6:16 AM, 'Ron Walker' via weewx-user <weewx...@googlegroups.com> wrote:
To view this discussion visit https://groups.google.com/d/msgid/weewx-user/83f0924f-3e05-4d37-aff6-6accbd539da2n%40googlegroups.com.
On Nov 20, 2025, at 7:03 AM, 'Ron Walker' via weewx-user <weewx...@googlegroups.com> wrote:
John,
To view this discussion visit https://groups.google.com/d/msgid/weewx-user/795f2ba8-abb0-46a7-9113-76b01127a7edn%40googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/weewx-user/32e1c767-3dcc-49a2-a929-c2328f86d168n%40googlegroups.com.
On Nov 20, 2025, at 8:35 AM, John Kline <jo...@johnkline.com> wrote:
On Nov 21, 2025, at 2:27 AM, Devonian <devon...@gmail.com> wrote:
If it's any use, I have "rtgd-0.6.7.tar.gz" file that creates the weewx loop data (gauge-data.txt) for SS gauges.
To view this discussion visit https://groups.google.com/d/msgid/weewx-user/84ef58e8-2c8c-4ade-a97a-b04d2365907an%40googlegroups.com.
![]() | |
On Nov 21, 2025, at 1:21 PM, 'Ron Walker' via weewx-user <weewx...@googlegroups.com> wrote:
Nigel, John,
To view this discussion visit https://groups.google.com/d/msgid/weewx-user/bbf885ee-3ad7-41c1-ba6c-abada9fa4164n%40googlegroups.com.
On Nov 21, 2025, at 6:01 PM, 'Ron Walker' via weewx-user <weewx...@googlegroups.com> wrote:
Actually, I just copied the 0.6.7 rtgd.py to /etc/bin/user and restarted weewx. Everything started with no issues!
To view this discussion visit https://groups.google.com/d/msgid/weewx-user/f3d86080-a801-4c42-b614-93e5322d9684n%40googlegroups.com.