Well I can help you fix that.. Let me know if you want that fixed..
There has been much confusion on that topic -- its just a matter of editing the js.. Not that big of a deal.. Others have made it into a mountain..
PS you put the edits for the other js in there.. The main confusion is there is TWO versions of the JS. Saratoga and Webster Weather..
Since you are running saratoga you need the saragota "feelslike code" which is NOT which is posted on the first thread..
Your feels like section should look like this;
// FeelsLike
temp = clientraw[4]; // note.. temp in C
if (temp <= 16.0 ) {
feelslike = clientraw[44]; //use WindChill
feelslike1 = clientraw[44]; //use WindChill
} else if (temp >=27.0) {
feelslike = clientraw[45]; //use Humidex
feelslike1 = clientraw[45]; //use Humidex
} else {
feelslike = temp; // use temperature
feelslike1 = temp; // use temperature
}
var feelslike = Math.round(convertTemp(feelslike));
var feelslike1 = Math.round(convertTemp(feelslike1));
set_ajax_obs("ajaxfeelslike",feelslike + uomTemp);
set_ajax_obs("ajaxfeelslike1",feelslike1 + uomTemp);