<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Arcade:  Heat Index Expression? in ArcGIS Online Questions</title>
    <link>https://community.esri.com/t5/arcgis-online-questions/arcade-heat-index-expression/m-p/1334337#M54853</link>
    <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/2839"&gt;@KenBuja&lt;/a&gt;&amp;nbsp;My fault, it is correct.&amp;nbsp; I made an error on my part.&amp;nbsp; Thanks so much for putting the expression together!!!&lt;/P&gt;</description>
    <pubDate>Mon, 02 Oct 2023 21:32:17 GMT</pubDate>
    <dc:creator>ArmstKP</dc:creator>
    <dc:date>2023-10-02T21:32:17Z</dc:date>
    <item>
      <title>Arcade:  Heat Index Expression?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-heat-index-expression/m-p/1334286#M54846</link>
      <description>&lt;P&gt;I have found this equation for Excel, but wondering if anybody has an expression in Arcade for °F?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A2 = Temperature in Celsius&amp;nbsp;&lt;/P&gt;&lt;P&gt;B2 = Humidity&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;=IF((A2*9/5+32)&amp;lt;=80,A2,IF(AND(B2&amp;lt;13,((A2*9/5+32)&amp;gt;80),((A2*9/5+32)&amp;lt;112)),(((-42.379+2.04901523*(A2*9/5+32)+10.14333127*B2-0.22475541*(A2*9/5+32)*B2-0.00683783*(A2*9/5+32)*(A2*9/5+32)-0.05481717*B2*B2+0.00122874*(A2*9/5+32)*(A2*9/5+32)*B2+0.00085282*(A2*9/5+32)*B2*B2-0.00000199*(A2*9/5+32)*(A2*9/5+32)*B2*B2)-32)*5/9)-(((13-B2)/4)*SQRT((17-ABS((A2*9/5+32)-95))/17)),IF(AND(B2&amp;gt;85,((A2*9/5+32)&amp;gt;80),((A2*9/5+32)&amp;lt;87)),(((-42.379+2.04901523*(A2*9/5+32)+10.14333127*B2-0.22475541*(A2*9/5+32)*B2-0.00683783*(A2*9/5+32)*(A2*9/5+32)-0.05481717*B2*B2+0.00122874*(A2*9/5+32)*(A2*9/5+32)*B2+0.00085282*(A2*9/5+32)*B2*B2-0.00000199*(A2*9/5+32)*(A2*9/5+32)*B2*B2)-32)*5/9)+((B2-85)/10)*((87-(A2*9/5+32))/5),(((-42.379+2.04901523*(A2*9/5+32)+10.14333127*B2-0.22475541*(A2*9/5+32)*B2-0.00683783*(A2*9/5+32)*(A2*9/5+32)-0.05481717*B2*B2+0.00122874*(A2*9/5+32)*(A2*9/5+32)*B2+0.00085282*(A2*9/5+32)*B2*B2-0.00000199*(A2*9/5+32)*(A2*9/5+32)*B2*B2)-32)*5/9))))&lt;/P&gt;</description>
      <pubDate>Mon, 02 Oct 2023 20:28:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-heat-index-expression/m-p/1334286#M54846</guid>
      <dc:creator>ArmstKP</dc:creator>
      <dc:date>2023-10-02T20:28:32Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade:  Heat Index Expression?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-heat-index-expression/m-p/1334302#M54847</link>
      <description>&lt;P&gt;This uses the formulas on the NOAA National Weather Service's &lt;A href="https://www.wpc.ncep.noaa.gov/html/heatindex_equation.shtml" target="_self"&gt;Heat Index Equation page&lt;/A&gt;.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var T = 80; //Temperature in °F
var RH = 12; //Relative Humidity

var HI = -42.379 + 2.04901523*T + 10.14333127*RH - .22475541*T*RH - .00683783*T*T - .05481717*RH*RH + .00122874*T*T*RH + .00085282*T*RH*RH - .00000199*T*T*RH*RH;

if (RH &amp;lt; 13 &amp;amp;&amp;amp; T &amp;gt; 80 &amp;amp;&amp;amp; T &amp;lt; 112) HI -= ((13-RH)/4)*SQRT((17-ABS(T-95.))/17);
if (RH &amp;gt; 85 &amp;amp;&amp;amp; T &amp;gt; 80 &amp;amp;&amp;amp; T &amp;lt; 87) HI += ((RH-85)/10) * ((87-T)/5);

if (HI &amp;lt; 80) HI = 0.5 * (T + 61.0 + ((T-68.0)*1.2) + (RH*0.094));

return HI;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The calculated value can be checked&amp;nbsp; through the &lt;A href="https://www.wpc.ncep.noaa.gov/html/heatindex.shtml" target="_self"&gt;Heat Index Calculator page&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Oct 2023 20:56:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-heat-index-expression/m-p/1334302#M54847</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2023-10-02T20:56:45Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade:  Heat Index Expression?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-heat-index-expression/m-p/1334329#M54850</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/2839"&gt;@KenBuja&lt;/a&gt;&amp;nbsp;Here is what I get when I input my fields:&amp;nbsp; 6601.13&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ArmstKP_0-1696281582048.png" style="width: 671px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/82147iBA66DADB9E9F84AC/image-dimensions/671x575?v=v2" width="671" height="575" role="button" title="ArmstKP_0-1696281582048.png" alt="ArmstKP_0-1696281582048.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Oct 2023 21:20:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-heat-index-expression/m-p/1334329#M54850</guid>
      <dc:creator>ArmstKP</dc:creator>
      <dc:date>2023-10-02T21:20:41Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade:  Heat Index Expression?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-heat-index-expression/m-p/1334333#M54851</link>
      <description>&lt;P&gt;What are the actual values for tempF and humidity? I tested this with several values for T and RH.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Oct 2023 21:27:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-heat-index-expression/m-p/1334333#M54851</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2023-10-02T21:27:19Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade:  Heat Index Expression?</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-heat-index-expression/m-p/1334337#M54853</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/2839"&gt;@KenBuja&lt;/a&gt;&amp;nbsp;My fault, it is correct.&amp;nbsp; I made an error on my part.&amp;nbsp; Thanks so much for putting the expression together!!!&lt;/P&gt;</description>
      <pubDate>Mon, 02 Oct 2023 21:32:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-heat-index-expression/m-p/1334337#M54853</guid>
      <dc:creator>ArmstKP</dc:creator>
      <dc:date>2023-10-02T21:32:17Z</dc:date>
    </item>
  </channel>
</rss>

