[weewx-user] Re: Keeping custom software calcs over update

2017-05-25 Thread Karl Grant
Just to follow up. I changed the group of extraTemp1 to group_degree_day in units.py. that is a workaround for the time being. I'd forgotten I'd done that before and explains why it appeared broken on update. -- You received this message because you are subscribed to the Google Groups

[weewx-user] Re: Keeping custom software calcs over update

2017-03-11 Thread Karl Grant
Thanks for your detailed reply. It was working in 3.5, though I didn't document any other changes. Now that I'm typing I remember sonething about using degree days as a unit as that converts okay. Iif I get time I might look at creating a temperature difference group -- You received this

[weewx-user] Re: Keeping custom software calcs over update

2017-03-10 Thread Karl Grant
I might try that, in the meantime I patch wxservices.py with def calc_extraTemp1(self, data, data_type): if 'inTemp' in data and 'outTemp' in data: try: data['extraTemp1']= round(data['inTemp'] - data['outTemp'],1 ) except: pass I