I installed weewx-highcharts and added a page (using the sample HTML page) to my Seasons skin. I am in the US, so I changed weewx.conf for US units and ranges:
[[[[Groups]]]]
group_altitude = foot
group_speed2 = mile_per_hour2
group_pressure = inHg
group_rain = inch
group_rainrate = inch_per_hour
group_temperature = degree_F
group_degree_day = degree_F_day
group_speed = mile_per_hour
[[[Extras]]]
[[[[MinRange]]]]
barometer = 1, inHg
windchill = 10, degree_F
UV = 16
radiation = 500
rain = 1, inch
outTemp = 10, degree_F
windSpeed = 10
The HTML page displays the highcharts and they all look correct except for Rainfall. The weekly Rainfall chart has the correct y-axis units (with no rain recorded during the last week):
The yearly chart y-axis units are incorrect and the pop-ups when you hover over a bar on the chart are also incorrect:
I took the year.json file and ran it through an online json -> csv converter (attached). I opened it in LibreOffice and converted epoch date/times to human-readable dates so I could verify there were no bad records in the json file. It looks fine.
If I hover over the bar for 31 May, I get 0.4 and in the json file it is 0.41
If I hover over the bar for 2 June, I get 0.0 and it should be 0.04
If I hover over the bar for 3 June, I get 0.1 and it should be 0.13
So, it appears like the extension is having a problem with my 100ths of an inch values (0.01 inches).
Any ideas on how to fix this? Thanks.