I had the same symptom and deleting the NOAA txt files and allowing them to regenerate worked a treat (not that it helps with the OP's issue)
On Tuesday, 23 June 2020 at 14:48:45 UTC+1 [email protected] wrote: > Hmmm, OK. > > A line is printed only if it contains one of temperature, rain, or wind. > It seems unlikely, but perhaps you are missing all three? To test that, in > the template NOAA-%Y-%m.txt.tmpl, change the lines > > #for $day in $month.days > #if $day.outTemp.count.raw or $day.rain.count.raw or $day.wind.count.raw > $day.dateTime.format($D, add_label=False) > $day.outTemp.avg.format($Temp,$NONE,add_label=False) > $day.outTemp.max.format($Temp,$NONE,add_label=False) > $day.outTemp.maxtime.format($Time,add_label=False) > $day.outTemp.min.format($Temp,$NONE,add_label=False) > $day.outTemp.mintime.format($Time,add_label=False) > $day.heatdeg.sum.format($Temp,$NONE,add_label=False) > $day.cooldeg.sum.format($Temp,$NONE,add_label=False) > $day.rain.sum.format($Rain,$NONE,add_label=False) > $day.wind.avg.format($Wind,$NONE,add_label=False) > $day.wind.max.format($Wind,$NONE,add_label=False) > $day.wind.maxtime.format($Time,add_label=False) > $day.wind.vecdir.format($Dir,$NONE,add_label=False) > #else > $day.dateTime.format($D) > #end if > #end for > > to > > #for $day in $month.days > $day.dateTime.format($D, add_label=False) > $day.outTemp.avg.format($Temp,$NONE,add_label=False) > $day.outTemp.max.format($Temp,$NONE,add_label=False) > $day.outTemp.maxtime.format($Time,add_label=False) > $day.outTemp.min.format($Temp,$NONE,add_label=False) > $day.outTemp.mintime.format($Time,add_label=False) > $day.heatdeg.sum.format($Temp,$NONE,add_label=False) > $day.cooldeg.sum.format($Temp,$NONE,add_label=False) > $day.rain.sum.format($Rain,$NONE,add_label=False) > $day.wind.avg.format($Wind,$NONE,add_label=False) > $day.wind.max.format($Wind,$NONE,add_label=False) > $day.wind.maxtime.format($Time,add_label=False) > $day.wind.vecdir.format($Dir,$NONE,add_label=False) > #end for > > This will print something for every line. > > -tk > > On Mon, Jun 22, 2020 at 4:42 PM John Pierce <[email protected]> wrote: > >> >> >> On Mon, Jun 22, 2020 at 4:51 AM Tom Keffer <[email protected]> wrote: >> >>> This is a known problem with v4.1.0. An upgrade to V4.1.1 will fix you >>> up. >>> >>> After the upgrade, delete all your NOAA files and let WeeWX >>> regenerate them. >>> >> >> so I was already on 4.1.1... >> >> >> well, I stopped weewx, deleted /var/weewx/reports/NOAA/*.txt, and >> restarted weewx, and still no-go on those summaries... The current month >> is partially populated as expected, but all previous months are empty. >> >> https://freescruz.com/weewx/tabular.html?report=NOAA/NOAA-2020-05.txt >> as an example of said previous month. >> >> ditto current year is partially populated, but the prior years since i >> started running weewx are empty. >> >> >> >> >> >> >> -- >> -john r pierce >> recycling used bits in santa cruz >> >> -- >> 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]. >> > To view this discussion on the web visit >> https://groups.google.com/d/msgid/weewx-user/CAJnkzX%2B%2BA_Q%2BOy%2BOMfJhMROiPmoy4LWDDRWup6VS80LmeHJ3WQ%40mail.gmail.com >> >> <https://groups.google.com/d/msgid/weewx-user/CAJnkzX%2B%2BA_Q%2BOy%2BOMfJhMROiPmoy4LWDDRWup6VS80LmeHJ3WQ%40mail.gmail.com?utm_medium=email&utm_source=footer> >> . >> > -- 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]. To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-user/50e28cd6-cf29-48e4-81a9-4e36edb47701n%40googlegroups.com.
