OK, update on this..
I made sure the consoles and weewx had the exact same lat/long. They were very close but not exact.
I'll just use one station for this today, which is the one in MA at 42.5 latitude.
It is completely overcast today, at least so far.
SELECT datetime, convert_tz(from_unixtime(datetime),'GMT', 'US/Eastern') as Date, radiation, round(maxSolarRad,0) as maxRad, round(radiation - maxSolarRad, 0) as delta FROM weewx_ma.archive where radiation > 0 order by datetime desc limit 288;
'1608471000','2020-12-20 08:30:00','38','82','-44'
'1608470700','2020-12-20 08:25:00','39','72','-33'
'1608470400','2020-12-20 08:20:00','47','63','-16'
'1608470100','2020-12-20 08:15:00','44','53','-9'
'1608469800','2020-12-20 08:10:00','38','44','-6'
'1608469500','2020-12-20 08:05:00','32','36','-4'
'1608469200','2020-12-20 08:00:00','29','28','1'
'1608468900','2020-12-20 07:55:00','26','21','5'
'1608468600','2020-12-20 07:50:00','26','15','11'
'1608468300','2020-12-20 07:45:00','20','10','10'
'1608468000','2020-12-20 07:40:00','16','6','10'
'1608467700','2020-12-20 07:35:00','12','3','9'
'1608467400','2020-12-20 07:30:00','10','1','9'
'1608467100','2020-12-20 07:25:00','5','0','5'
'1608466800','2020-12-20 07:20:00','4','0','4'
So I am having this issue on a cloudy day with lat and long aligned.
Is anyone else seeing this in their environment??