<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[current weather feels 185F!!!]]></title><description><![CDATA[<p dir="auto">i just installed magic mirror on the rpi2. loooks great except not sure why current weather shows 185F<br />
just to check, i went outside and it’re about 90F, not 185F!</p>
<p dir="auto"><img src="https://i.imgur.com/zQfRCXA.jpg" alt="alt text" class=" img-fluid img-markdown" /></p>
<p dir="auto">any idea what went wrong? and how do i have current weather section colorized?<br />
thanks!</p>
]]></description><link>https://forum.magicmirror.builders/topic/7177/current-weather-feels-185f</link><generator>RSS for Node</generator><lastBuildDate>Sun, 19 Apr 2026 08:44:50 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/7177.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 15 May 2018 17:21:11 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to current weather feels 185F!!! on Sat, 19 May 2018 02:19:40 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/maxbachmann" aria-label="Profile: maxbachmann">@<bdi>maxbachmann</bdi></a></p>
<p dir="auto">Ahh, I didn’t realize that the feels like temp was being calculated manually. I thought it was coming directly from the api. My bad.</p>
<p dir="auto"><img src="/assets/uploads/files/1526696346743-21.png" alt="0_1526696345916_21.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.magicmirror.builders/post/39635</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/39635</guid><dc:creator><![CDATA[Mykle1]]></dc:creator><pubDate>Sat, 19 May 2018 02:19:40 GMT</pubDate></item><item><title><![CDATA[Reply to current weather feels 185F!!! on Sat, 19 May 2018 01:34:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mykle1" aria-label="Profile: Mykle1">@<bdi>Mykle1</bdi></a> but the feel Temperature gets calculated out of two of the numbers he showed on the screen (windspeed and real temperatur) when I pulled out my calculator to check it it was definetly below 100, so not quite sure what caused the error, but would surprise me if it was the API.</p>
]]></description><link>https://forum.magicmirror.builders/post/39630</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/39630</guid><dc:creator><![CDATA[maxbachmann]]></dc:creator><pubDate>Sat, 19 May 2018 01:34:13 GMT</pubDate></item><item><title><![CDATA[Reply to current weather feels 185F!!! on Sat, 19 May 2018 01:03:01 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/tv25666" aria-label="Profile: tv25666">@<bdi>tv25666</bdi></a></p>
<p dir="auto">Most likely, the API was faulty. It happens. :-/</p>
]]></description><link>https://forum.magicmirror.builders/post/39628</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/39628</guid><dc:creator><![CDATA[Mykle1]]></dc:creator><pubDate>Sat, 19 May 2018 01:03:01 GMT</pubDate></item><item><title><![CDATA[Reply to current weather feels 185F!!! on Fri, 18 May 2018 13:54:28 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/maxbachmann" aria-label="Profile: maxbachmann">@<bdi>maxbachmann</bdi></a><br />
thank you. i dont know why that day was special. now, feels like temp is back to “normal”  without me doing anything special. if it goes crazy again, i will delete those code. thanks!</p>
]]></description><link>https://forum.magicmirror.builders/post/39600</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/39600</guid><dc:creator><![CDATA[tv25666]]></dc:creator><pubDate>Fri, 18 May 2018 13:54:28 GMT</pubDate></item><item><title><![CDATA[Reply to current weather feels 185F!!! on Wed, 16 May 2018 14:07:57 GMT]]></title><description><![CDATA[<p dir="auto">The Temperature says 81.2 F which is pretty good I guess ;)<br />
The other one 185F is the feels like temperature. It’s calculated from the normal temperature and the windspeed.</p>
<pre><code>var windchillinF = Math.round(35.74+0.6215*tempInF-35.75*Math.pow(windInMph,0.16)+0.4275*tempInF*Math.pow(windInMph,0.16));
			var windChillInC = (windchillinF - 32) * (5/9);
			// this.feelsLike = windChillInC.toFixed(0);

			switch (this.config.units){
			case "metric": this.feelsLike = windChillInC.toFixed(0);
				break;
			case "imperial": this.feelsLike = windChillInF.toFixed(0);
				break;
			case "default":
				var tc = windChillInC - 273.15;
				this.feelsLike = tc.toFixed(0);
				break;
			}
</code></pre>
<p dir="auto">doing the calculation manually given the 81.2 degree and 5 Beaufort you should have a feel like of somewhat around 84 degree. You might want to check what the results in between are that you get to find the fault. However if you just want to see the actual temperature you can aswell just deativate this feels-like temperature</p>
]]></description><link>https://forum.magicmirror.builders/post/39530</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/39530</guid><dc:creator><![CDATA[maxbachmann]]></dc:creator><pubDate>Wed, 16 May 2018 14:07:57 GMT</pubDate></item></channel></rss>