Yes they should be included, and to take it further so should dayRain, monthRain , yearRain, totalRain and stormRain.
To be fixed in the next release. In the interim the following code added to user/extensions.py will achieve the same end: import weewx.units weewx.units.obs_group_dict['dayRain'] = 'group_rain' weewx.units.obs_group_dict['weekRain'] = 'group_rain' weewx.units.obs_group_dict['monthRain'] = 'group_rain' weewx.units.obs_group_dict['yearRain'] = 'group_rain' weewx.units.obs_group_dict['totalRain'] = 'group_rain' weewx.units.obs_group_dict['stormRain'] = 'group_rain' weewx.units.obs_group_dict['p_rainRate'] = 'group_rainrate Gary On Thursday, 15 June 2023 at 20:27:25 UTC+1 [email protected] wrote: > Version of driver used: v0.5.0b5 > <https://github.com/gjr80/weewx-gw1000/commit/be1ca870c3e0142cd51566e78989e172ca66c452> > > In default_groups: > https://github.com/gjr80/weewx-gw1000/blob/master/bin/user/gw1000.py#L455 > > Shouldn't there be values for "weekRain" and "p_rainRate"? Without them > specified I have issues with the unit. > > default_groups = {'extraTemp9': 'group_temperature', > 'extraTemp10': 'group_temperature', > 'extraTemp11': 'group_temperature', > 'extraTemp12': 'group_temperature', > 'extraTemp13': 'group_temperature', > 'extraTemp14': 'group_temperature', > 'extraTemp15': 'group_temperature', > 'extraTemp16': 'group_temperature', > 'extraTemp17': 'group_temperature', > 'weekRain': 'group_rain', > 'p_rain': 'group_rain', > 'p_rainRate': 'group_rainrate', > 'p_stormRain': 'group_rain', > 'p_dayRain': 'group_rain', > 'p_weekRain': 'group_rain', > 'p_monthRain': 'group_rain', > 'p_yearRain': 'group_rain'} > > > -- 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/3db2ad32-4539-4fe3-a224-242fbb2ae998n%40googlegroups.com.
