You didn't show the log, but I can take an educated guess at what's
happening. At the end of an archive period, Weewx asks for all data since
the last timestamp it has in the database. Most likely, the last timestamp
in your database is far in the future (2032), so there are no new data.
To fix, clear any "future" records. Install sqlite3 if you haven't already
$ *apt-get install sqlite3*
Then delete any records greater than "now" (NOT TESTED; make a backup):
$ *sqlite3 weewx.sdb*
*sqlite> delete from archive where dateTime > strftime('%s', 'now');*
If that doesn't work, follow Dave's suggestion and clear the logger's
memory.
-tk
On Sat, Oct 28, 2017 at 9:28 AM, Alec Bennett <[email protected]> wrote:
> I had to rebuild my Debian install after the sd card in my beaglebone got
> corrupted, and all is well including the realtime gauge postings, except
> that the 5 minute reports are stuck on February 18, 2032.
>
> http://sinkingsensation.com/weather/
>
> - the weather station is a vantage pro2
>
> - The reports are being generated every 5 minutes, but not with new data.
>
> - I don't see any errors in the syslog.
>
> - The date is set correctly on the device so I don't know where it's
> getting that data. I did run it in simulator mode for awhile yesterday so
> maybe that's the source.
>
> - real time gauge postings are working well: sinkingsensation.com/wind
>
> Anyway, any tips on getting it to use live data again?
>
>
> --
> 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 [email protected].
> For more options, visit https://groups.google.com/d/optout.
>
--
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 [email protected].
For more options, visit https://groups.google.com/d/optout.