the wmr100 and wmr200 drivers have abit of code to check gust speed. if
the hardware reports a gust speed greater than the wind speed, the driver
sets gust speed to None.
perhaps that affects how the accumulators do their calculations?
@dwhile839, could you add some debug logging?
change this:
if _record['wind_gust'] < _record['wind_speed']:
_record['wind_gust'] = None
to this:
if _record['wind_gust'] < _record['wind_speed']:
logdbg("clearing gust speed: gust=%s speed=%s" %
(_record['wind_gust'], _record['wind_speed']))
_record['wind_gust'] = None
then restart weewx with debug=1
m
--
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.