<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Windows-1252">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;">
The latest version of GrADS has an if() function, which could simplify this operation a bit for you.&nbsp;<a href="http://cola.gmu.edu/grads/gadoc/gradfuncif.html">http://cola.gmu.edu/grads/gadoc/gradfuncif.html</a>
<div>If your are unable to upgrade, then you can use const() and maskout() to create separate variables that have desired index values and zeros everywhere else, then you can simply add those variables together to ‘merge’ them into one plot.&nbsp;</div>
<div>—Jennifer<br>
<div><br>
<div>
<div>On Apr 18, 2017, at 6:14 PM, Carter Humphreys - Mods for GRX &lt;<a href="mailto:carter.humphreys@mods-for-grx.com">carter.humphreys@mods-for-grx.com</a>&gt; wrote:</div>
<br class="Apple-interchange-newline">
<blockquote type="cite">
<div dir="ltr">Jeff,
<div><br>
</div>
<div>Thank you for the help! I got that working. So I've gotta a few different fields that I am working with here. What I want to be able to do is after performing the maskout()and const() on those fields, combine the resulting index value from all fields into
 one image. So in other words, taking the lowest in each field and outputting that as the final image.</div>
<div><br>
</div>
<div>I would image you could use the same process [ maskout) &#43; const() ]but wouldn't that require a variables? (And I can't draw variables)</div>
<div><br>
</div>
<div>Thank you!</div>
<div class="gmail_extra"><br clear="all">
<div>
<div class="gmail_signature">
<div dir="ltr">
<div dir="ltr">
<div dir="ltr">
<div dir="ltr">
<div style="font-size:small">
<p style="font-size:12.8px">--<u></u><u></u></p>
<p style="font-size:12.8px">Sincerely,<u></u><u></u></p>
<p style="font-size:12.8px"><b>Carter J. Humphreys<u></u><u></u></b></p>
<p style="font-size:12.8px"><i>Developer<u></u><u></u></i></p>
<p style="font-size:12.8px"><i><br>
</i></p>
<p style="font-size:12.8px"><u></u><u></u></p>
<p style="font-size:12.8px">Mods for GRX<u></u><u></u></p>
<p style="font-size:12.8px"><a href="mailto:carter.humphreys@mods-for-grx.com" style="color:rgb(17,85,204)" target="_blank"><span style="color:rgb(5,99,193)">carter.humphreys@mods-for-grx.com</span></a>&nbsp;| Support Email:&nbsp;<a href="mailto:support@mods-for-grx.com" style="color:rgb(17,85,204)" target="_blank"><span style="color:rgb(5,99,193)">support@mods-for-grx.com</span></a>&nbsp;|
 Website:&nbsp;<a href="http://www.mods-for-grx.com/" style="color:rgb(17,85,204)" target="_blank"><span style="color:rgb(5,99,193)">www.mods-for-grx.com</span></a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<br>
<div class="gmail_quote">On Mon, Apr 17, 2017 at 10:50 PM, Jeff Duda <span dir="ltr">
&lt;<a href="mailto:jeffduda319@gmail.com" target="_blank">jeffduda319@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<div dir="ltr">
<div>
<div>
<div>Unfortunately you can't define plottable fields like that. You need to use a combination of maskout() and const() to get the desired field. Nesting of const((maskout)) usually gets you what you want. maskout() works like an if statement, filtering out
 values you don't want to plot based on an inequality. The way it works is maskout(field,mask), where field is the raw field you want to plot, and mask is an expression which may include other fields and/or constants. For example, if you wanted to just plot
 EHI where it was &gt; 1, you could do 'd maskout(ehi,ehi-1)'. The result of maskout is a field plotted only where the mask expression is &gt; 0 (might be &gt;= 0, I forget, but if you're dealing with a continuous field, the end result is the same). Anywhere the mask
 field does not satisfy the equation, the raw field is treated like missing data. This is where const() comes in. You can nest maskout() within const() to tell grads what to do with the missing data (like the ELSE part of the if-else block). If you wanted to
 fill the rest of the EHI-masked field with 0s, for example, you could do 'd const(maskout(ehi,ehi-1),0,-u)<wbr>', where the -u flag specifies const() to only apply the else value to undefined values (created by the maskout).<br>
<br>
</div>
While maskout works best for one-sided (i.e., semi-infinite) inequalities (e.g., x &gt; 5 or x &lt;= -10), you can use it for bounded inequalities as well using the absolute value function. You'll have to get a little clever with your masking expression, but some
 simple algebra will do it for you. You can also sum values and take an average (where the bounded inequality is valid, you'll sum the same field twice, so taking the average will restore the original values to the field. For example, for your first expression:<br>
</div>
'd 0.5*(maskout(ehi,ehi-0.25)&#43;<wbr>maskout(ehi,0.5-ehi))' would plot a band of EHI values at grid points where 0.25 &lt; EHI &lt; 0.5. You could wrap this in a const() function to change those values to 1: 'd const(0.5*(maskout(ehi,ehi-0.<wbr>25)&#43;maskout(ehi,0.5-ehi)),1)'.
 You can then do that for all your bands. There will not be any overlap.<br>
<br>
</div>
<div>Of course, that's a longhand way of doing it. You can also just use repeated multiplied instances of nested const(maskout()) functions to get the same result in one grand command, although it will be quite involved. I'll give you a start and leave you
 to figure the rest out:<br>
<br>
</div>
<div>'d const(const(maskout(ehi,0.125 - abs(ehi-0.375)),1),0,-u)...<br>
</div>
<div>This first chunk gives your first condition where index would be set to 1. Use multiplication for the other terms.<br>
<br>
</div>
<div>Good luck!<br>
<br>
</div>
<div>Jeff Duda<br>
</div>
<div>
<div><br>
</div>
</div>
</div>
<div class="gmail_extra"><br>
<div class="gmail_quote">On Mon, Apr 17, 2017 at 4:59 PM, Carter Humphreys - Mods for GRX
<span dir="ltr">&lt;<a href="mailto:carter.humphreys@mods-for-grx.com" target="_blank">carter.humphreys@mods-for-<wbr>grx.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<div dir="ltr">Hello,
<div><br>
</div>
<div>I'm fairly new to GrADS and am trying use a script to search through a model product using if statements and assign a value to a certain range of that product. (I.e. if temp is between 45 and 55, x = 2) I then try to have GrADS draw that variable but all
 I end up with is a blank map.</div>
<div><br>
</div>
<div>Any help would be appreciated, it's probably simple but I've been pretty much lost after trying this for a few days now.</div>
<div><br>
</div>
<div>My Script:</div>
<div><font face="monospace, monospace"><br>
</font></div>
<div>
<div><font face="monospace, monospace">'clear'</font></div>
<div><font face="monospace, monospace">'set mpdset hires'</font></div>
<div><font face="monospace, monospace">'sdfopen <a href="http://nomads.ncep.noaa.gov/dods/nam/nam20170417/nam_12z" target="_blank">
http://nomads.ncep.noaa.gov/do<wbr>ds/nam/nam20170417/nam_12z</a>'</font></div>
<div><font face="monospace, monospace"><br>
</font></div>
<div><font face="monospace, monospace">'define ehi = (capesfc*hlcy1000_0m)/160000'</font></div>
<div><font face="monospace, monospace">'define index = 0'</font></div>
<div><font face="monospace, monospace"><br>
</font></div>
<div><font face="monospace, monospace">if (ehi&gt;=0.25 &amp; ehi&lt;0.50)</font></div>
<div><font face="monospace, monospace">index = 1</font></div>
<div><font face="monospace, monospace">endif</font></div>
<div><font face="monospace, monospace"><br>
</font></div>
<div><font face="monospace, monospace">if (ehi&gt;=0.50 &amp; ehi&lt;0.75)</font></div>
<div><font face="monospace, monospace">index = 2</font></div>
<div><font face="monospace, monospace">endif</font></div>
<div><font face="monospace, monospace"><br>
</font></div>
<div><font face="monospace, monospace">if (ehi&gt;=0.75 &amp; ehi&lt;1.00)</font></div>
<div><font face="monospace, monospace">index = 3</font></div>
<div><font face="monospace, monospace">endif</font></div>
<div><font face="monospace, monospace"><br>
</font></div>
<div><font face="monospace, monospace">if (ehi&gt;=1.00)</font></div>
<div><font face="monospace, monospace">index = 4</font></div>
<div><font face="monospace, monospace">endif</font></div>
<div><font face="monospace, monospace"><br>
</font></div>
<div><font face="monospace, monospace">'set gxout shaded'</font></div>
<div><font face="monospace, monospace"><br>
</font></div>
<div><font face="monospace, monospace">'d index'</font></div>
<div><font face="monospace, monospace"><br>
</font></div>
<div><font face="monospace, monospace">'cbar'</font></div>
<div><font face="monospace, monospace">'draw title GrADS Script Test'</font></div>
<div><font face="monospace, monospace">'printim C:/GrADS/GrADS_script_test.png png white'</font></div>
<div><br>
</div>
<div>
<div class="gmail-m_2887217279489690697m_6728746938344595068gmail_signature">
<div dir="ltr">
<div dir="ltr">
<div dir="ltr">
<div dir="ltr">
<div style="font-size:small">
<p style="font-size:12.8px">--<u></u><u></u></p>
<p style="font-size:12.8px">Sincerely,<u></u><u></u></p>
<p style="font-size:12.8px"><b>Carter J. Humphreys<u></u><u></u></b></p>
<p style="font-size:12.8px"><i>Developer<u></u><u></u></i></p>
<p style="font-size:12.8px"><i><br>
</i></p>
<p style="font-size:12.8px"><u></u><u></u></p>
<p style="font-size:12.8px">Mods for GRX<u></u><u></u></p>
<p style="font-size:12.8px"><a href="mailto:carter.humphreys@mods-for-grx.com" style="color:rgb(17,85,204)" target="_blank"><span style="color:rgb(5,99,193)">carter.humphreys@mods-for-grx.<wbr>com</span></a>&nbsp;| Support Email:&nbsp;<a href="mailto:support@mods-for-grx.com" style="color:rgb(17,85,204)" target="_blank"><span style="color:rgb(5,99,193)">support@mods-for-grx.co<wbr>m</span></a>&nbsp;|
 Website:&nbsp;<a href="http://www.mods-for-grx.com/" style="color:rgb(17,85,204)" target="_blank"><span style="color:rgb(5,99,193)">www.mods-for-grx.com</span></a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<br>
______________________________<wbr>_________________<br>
gradsusr mailing list<br>
<a href="mailto:gradsusr@gradsusr.org" target="_blank">gradsusr@gradsusr.org</a><br>
<a href="http://gradsusr.org/mailman/listinfo/gradsusr" rel="noreferrer" target="_blank">http://gradsusr.org/mailman/li<wbr>stinfo/gradsusr</a><br>
<br>
</blockquote>
</div>
<span class="gmail-HOEnZb"><font color="#888888"><br>
<br clear="all">
<br>
-- <br>
<div class="gmail-m_2887217279489690697gmail_signature">
<div dir="ltr">
<div dir="ltr">Jeff Duda<br>
Post-doctoral research fellow<br>
University of Oklahoma School of Meteorology<br>
</div>
</div>
</div>
</font></span></div>
<br>
______________________________<wbr>_________________<br>
gradsusr mailing list<br>
<a href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a><br>
<a href="http://gradsusr.org/mailman/listinfo/gradsusr" rel="noreferrer" target="_blank">http://gradsusr.org/mailman/<wbr>listinfo/gradsusr</a><br>
<br>
</blockquote>
</div>
<br>
</div>
</div>
_______________________________________________<br>
gradsusr mailing list<br>
<a href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a><br>
http://gradsusr.org/mailman/listinfo/gradsusr<br>
</blockquote>
</div>
<br>
<div apple-content-edited="true">
<div style="color: rgb(0, 0, 0); letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;">
<div style="color: rgb(0, 0, 0); letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;">
<div style="font-size: 12px; orphans: 2; widows: 2;">--</div>
<div style="font-size: 12px; orphans: 2; widows: 2;">Jennifer Miletta Adams<br>
Center for Ocean-Land-Atmosphere Studies (COLA)<br>
George Mason University<br>
<br>
<br>
</div>
</div>
</div>
</div>
<br>
</div>
</div>
</body>
</html>