<div dir="ltr"><div style="font-size:12.8px">Is there anyway to plot a specific value from a lat/lon?</div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px">set lat 41</div><div style="font-size:12.8px">set lon -75</div><div style="font-size:12.8px">d tmp2m</div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px">Returns a value if done at the command-line but doesn&#39;t seem to do anything when done with:</div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px">&#39;set gxout grid&#39;<br></div><div style="font-size:12.8px"><div>&#39;set lat 41&#39;</div><div>&#39;set lon -75&#39;</div></div><div style="font-size:12.8px">&#39;d tmp2m&#39;</div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px">UPDATE: While I wish there was a way to do it with the above, I got it with doing this:</div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px"><div style="font-size:12.8px">&#39;d (actualcmc - lterpclim)&#39;</div><div style="font-size:12.8px">*&#39;set gxout grid&#39;</div><div style="font-size:12.8px">lonk=-75.7233</div><div style="font-size:12.8px">latk=41.3383</div><div style="font-size:12.8px">&#39;set lat &#39;latk</div><div style="font-size:12.8px">&#39;set lon &#39;lonk</div><div style="font-size:12.8px">&#39;d (actualcmc - lterpclim)&#39;</div><div style="font-size:12.8px">say result</div><div style="font-size:12.8px">tempkavp = subwrd(result,4)</div><div style="font-size:12.8px">tempavp = substr(tempkavp,1,4)</div><div style="font-size:12.8px">&#39;q w2xy &#39;lonk&#39; &#39;latk</div><div style="font-size:12.8px">say result</div><div style="font-size:12.8px">wx=subwrd(result,3);wy=subwrd(result,6)</div><div style="font-size:12.8px">&#39;set font 15&#39;</div><div style="font-size:12.8px">&#39;set string 1 tl 0 0&#39;</div><div style="font-size:12.8px">&#39;set strsiz 0.08&#39;</div><div style="font-size:12.8px">&#39;draw string &#39;wx&#39; &#39;wy&#39; &#39;tempavp</div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px"><span style="font-size:12.8px">Now, I know some of that isn&#39;t needed but what I&#39;m curious of now... how can I get the tempavp to always be 1 digit after the decimal? So for example -0.1 or 1.2? The above code does -0.1 and 1.25 which makes sense of course but if this is the way it needs to be done (instead of using gxoutgrid and being able to use dignum) I have no idea how I can do it...</span><br></div></div></div>