Patched dashboard.js
Posted: Fri 29 Jan 2010 10:33 pm
Steve
I just noticed a problem with the dashboard.js script used on the gauges page. My WH1091 sometimes reports North as 360 and the script cannot cope with that on the Wind rose - it displays 'undefined'. Specifically the getord() function needs patching.
Here is the fixed version I am using on my website:
Cheers
Mark
I just noticed a problem with the dashboard.js script used on the gauges page. My WH1091 sometimes reports North as 360 and the script cannot cope with that on the Wind rose - it displays 'undefined'. Specifically the getord() function needs patching.
Here is the fixed version I am using on my website:
Code: Select all
function getord(d){
//convert to range 0-360
if(d>=360){d-=360;}
deg = Math.ceil((d+11.25)/22.5)
ords = new Array("N","NNE","NE","ENE","E","ESE","SE","SSE","S","SSW","SW","WSW","W","WNW","NW","NNW")
return(ords[deg-1]);
}Cheers
Mark