Welcome to the Cumulus Support forum.
Latest Cumulus MX release 3.9.6 (build 3101) - 20 January 2021 (please see announcement regarding releases since 3.5.0)
Legacy Cumulus 1 release v1.9.4 (build 1099) - 28 November 2014 (a patch is available for 1.9.4 build 1099 that extends the date range of the NOAA report and Snow Index drop-down menus to 2030)
Use this Wiki link to Download the Software (Cumulus MX / Cumulus 1 and other related items).
Latest Cumulus MX release 3.9.6 (build 3101) - 20 January 2021 (please see announcement regarding releases since 3.5.0)
Legacy Cumulus 1 release v1.9.4 (build 1099) - 28 November 2014 (a patch is available for 1.9.4 build 1099 that extends the date range of the NOAA report and Snow Index drop-down menus to 2030)
Use this Wiki link to Download the Software (Cumulus MX / Cumulus 1 and other related items).
Feels Like Gauges
Moderator: mcrossley
-
- Posts: 341
- Joined: Tue 12 Apr 2011 10:23 pm
- Weather Station: Watson W-8186
- Operating System: Debian Buster
- Location: Leicester
- Contact:
Feels Like Gauges
Any idea when the Feels Like gauge going to work please?
Thanks
Thanks
- mcrossley
- Posts: 7580
- Joined: Thu 07 Jan 2010 9:44 pm
- Weather Station: Davis VP2
- Operating System: Buster Lite rPi
- Location: Wilmslow, Cheshire, UK
- Contact:
Re: Feels Like Gauges
I have no plans to add it at the moment. There are things to fix in Cumulus first.
-
- Posts: 70
- Joined: Wed 28 Nov 2012 6:12 am
- Weather Station: Davis Vantage Pro 2
- Operating System: Win 10
- Contact:
Re: Feels Like Gauges
Funny that this post cropped up, chanced across this post.
As it happens, I have just implemented "Feels Like" gauge on the steel series gauges as a radio button option on the Dew Gauge, and chanced across this post.
Have it running here http://members.iinet.net.au/~nossis/wea ... ges-ss.htm
The changes are all applied manually to the files and one must be running Cumulus MX (AFAIK) for feelslike webtag to work
Mod zip file attached that contains instructions "Modifications Guide.txt" and the modified files with the changes embedded, "gauges.js", "gaugesT.htm", "language.min.js", "realtimegaugesT.txt". These modified files are the standard files with only the "feels like" changes added in, from the latest Cumulus MX release version build 3100.
I had tested it but there is always the possibility there is some tiny thing that I may have missed. Secondly I am not by an means a programmer and I am sure that there is a better way of doing this. But I had a go and got it to work, so I learnt things
And there is the usual caveats that this is provided as is.
contents of the Modifications Guide.txt below
Adding "Feels Like" Gauge for Steel Series gauges, as an extra radio button setting for the Dew Gauge
File "realtimegaugesT.txt"
Insert extra lines 17
Insert extra lines 50
File gaugesT.htm
Insert extra lin 44
File language.min.js
(have only inserted the english Translation)
Look for
Insert in between "Humidex",<insert_herer>rain_title:
Final result as below
File gauges.js
Line 976 Insert extra lines
Line 1102 Insert Extra Lines
Line 3439 Remove the ); at the end, and reaplce with a ,
Then on line 3440 insert the extra line. Both modifed and inserted lines shown below
Line 3451 Remove the ); at the end, and reaplce with a ,
Then on line 3452 insert the extra line. Both modifed and inserted lines shown below
Line 3601 Insert
Hope this is useful
Barry
As it happens, I have just implemented "Feels Like" gauge on the steel series gauges as a radio button option on the Dew Gauge, and chanced across this post.
Have it running here http://members.iinet.net.au/~nossis/wea ... ges-ss.htm
The changes are all applied manually to the files and one must be running Cumulus MX (AFAIK) for feelslike webtag to work
Mod zip file attached that contains instructions "Modifications Guide.txt" and the modified files with the changes embedded, "gauges.js", "gaugesT.htm", "language.min.js", "realtimegaugesT.txt". These modified files are the standard files with only the "feels like" changes added in, from the latest Cumulus MX release version build 3100.
I had tested it but there is always the possibility there is some tiny thing that I may have missed. Secondly I am not by an means a programmer and I am sure that there is a better way of doing this. But I had a go and got it to work, so I learnt things

And there is the usual caveats that this is provided as is.
contents of the Modifications Guide.txt below
Adding "Feels Like" Gauge for Steel Series gauges, as an extra radio button setting for the Dew Gauge
File "realtimegaugesT.txt"
Insert extra lines 17
Code: Select all
"feelslike":"<#feelslike>",
"feelslikeTL":"<#feelslikeTL>",
"feelslikeTH":"<#feelslikeTH>",
Code: Select all
"TfeelslikeTH":"<#TfeelslikeTH>",
"TfeelslikeTL":"<#TfeelslikeTL>",
Insert extra lin 44
Code: Select all
<input id="rad_dew6" type="radio" name="rad_dew" value="fee" onclick="gauges.doDew(this);"><label id="lab_dew6" for="rad_dew6">Feels Like</label>
File language.min.js
(have only inserted the english Translation)
Look for
Code: Select all
humdx_title:"Humidex",humdx_info:"Humidex",humdx_web:"Humidex",rain_title:"Rainfall",rrate_title:"Rain Rate",
Code: Select all
feel_title:"Feels Like",feel_info:"Feels Like",feel_web:"Feels Like",
Code: Select all
humdx_title:"Humidex",humdx_info:"Humidex",humdx_web:"Humidex",feel_title:"Feels Like",feel_info:"Feels Like",feel_web:"Feels Like",rain_title:"Rainfall",rrate_title:"Rain Rate",
File gauges.js
Line 976 Insert extra lines
Code: Select all
case 'fee':
cache.title = strings.feel_title;
cache.popupImg = 5;
break;
Line 1102 Insert Extra Lines
Code: Select all
case 'fee': // feels like temperature
cache.low = extractDecimal(data.feelslikeTL);
cache.high = extractDecimal(data.feelslikeTH);
cache.value = extractDecimal(data.feelslike);
cache.areas = [steelseries.Section(+cache.low, +cache.high, gaugeGlobals.minMaxArea)];
cache.title = strings.feel_title;
cache.minMeasuredVisible = false;
cache.maxMeasuredVisible = false;
cache.popupImg = 5;
tip = tip = strings.feel_info + ':' +
'<br>' +
'- ' + strings.lowestF_info + ': ' + cache.low + data.tempunit + ' ' + strings.at + ' ' + data.TfeelslikeTL +
' | ' + strings.highestF_info + ': ' + cache.high + data.tempunit + ' ' + strings.at + ' ' + data.TfeelslikeTH;
break;
Then on line 3440 insert the extra line. Both modifed and inserted lines shown below
Code: Select all
extractDecimal(data.wchillTL, deflt),
extractDecimal(data.feelslikeTL, deflt));
Then on line 3452 insert the extra line. Both modifed and inserted lines shown below
Code: Select all
extractDecimal(data.humidex, deflt),
extractDecimal(data.feelslikeTH, deflt));
Code: Select all
data.feelslike = convFunc(data.feelslike);
data.feelslikeTH = convFunc(data.feelslikeTH);
data.feelslikeTL = convFunc(data.feelslikeTL);
Barry
You do not have the required permissions to view the files attached to this post.
-
- Posts: 1028
- Joined: Mon 09 Jul 2012 8:40 pm
- Weather Station: Davis VP2 Cabled with Solar
- Operating System: Windows 10 Pro
- Location: Auckland, New Zealand
- Contact:
Re: Feels Like Gauges
Note:-
MXUIwebsite includes feelslike gauge.
MXUIwebsite includes feelslike gauge.
BCJKiwi
https://silveracorn.nz/weather
https://silveracorn.nz/weather
-
- Posts: 341
- Joined: Tue 12 Apr 2011 10:23 pm
- Weather Station: Watson W-8186
- Operating System: Debian Buster
- Location: Leicester
- Contact:
Re: Feels Like Gauges
Thank you Barry, i will try it.
Thanks
Thanks
-
- Posts: 341
- Joined: Tue 12 Apr 2011 10:23 pm
- Weather Station: Watson W-8186
- Operating System: Debian Buster
- Location: Leicester
- Contact:
Re: Feels Like Gauges
Mine works in Google Chrome, not in Microsoft Edge.
-
- Posts: 70
- Joined: Wed 28 Nov 2012 6:12 am
- Weather Station: Davis Vantage Pro 2
- Operating System: Win 10
- Contact:
Re: Feels Like Gauges
Try using Edge in incognito mode. If that works then clear Edge cache and that should sort it.richard_newberry wrote: ↑Tue 19 Jan 2021 12:18 amMine works in Google Chrome, not in Microsoft Edge.