<div dir="ltr">Hi Bill,<div><br></div><div><span style="font-size:12.8px">I had to explicitly define the sfXarray and sfYarray as lon and lat.  Which is odd because I&#39;ve never had to do that before - even the example script from the MMM tutorial site doesn&#39;t.  But regardless, it works again.</span><br></div><div><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">I also implemented your suggestion to convert to linear Z for interpolation, then back to dbz after.</span></div><div><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">Thanks for your help,</span></div><div><span style="font-size:12.8px">Ryan</span></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Oct 20, 2016 at 12:27 PM, Bill Ladwig <span dir="ltr">&lt;<a href="mailto:ladwig@ucar.edu" target="_blank">ladwig@ucar.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hi Ryan,<div><br></div><div>Here are a couple thoughts, that may or may not help.</div><div><br></div><div>1) Interpolating dbz (logarithmic data) using linear interpolation is probably not the best idea.  I would convert dbz to linear Z, then perform the interpolation, then convert back to dbz.  Note: Z = 10**(dbz/10.0)</div><div><br></div><div>2) Do a printVarSummary on dbz_plane and compare it to dbz to see if the coordinates got dropped.  I can&#39;t remember off the top of my head if that&#39;s going to happen.  Adding them back may fix your problem.</div><div><br></div><div>3) Note that the dbz produced by NCL is not identical to the result for REFL_10CM, and I would choose REFL_10CM over the NCL dbz result if you have it available.  This assumes you&#39;re using a microphysics scheme, like Thompson, that can produce simulated radar reflectivity.  Otherwise, the field will be 0s.</div><div><br></div><div>4) If all else fails, you can upload a file to our ftp via:</div><div><br></div><div><pre style="margin-top:0px;margin-bottom:0px;padding:0px;font-size:13.3333px;line-height:12pt;font-family:courier;border-style:solid;border-width:0px 0px 15px;border-color:transparent;color:rgb(0,0,0)">ftp <a href="http://ftp.cgd.ucar.edu" target="_blank">ftp.cgd.ucar.edu</a>
anonymous
&lt;use your email address for the password&gt;
cd incoming
put ...
put ...



quit</pre><pre style="margin-top:0px;margin-bottom:0px;padding:0px;font-size:13.3333px;line-height:12pt;border-style:solid;border-width:0px 0px 15px;border-color:transparent;color:rgb(0,0,0)"><font face="arial, helvetica, sans-serif">After you upload it, you can send me a message offline to let me know the name of the file.  We can try to figure out what&#39;s going wrong.</font></pre><pre style="margin-top:0px;margin-bottom:0px;padding:0px;font-size:13.3333px;line-height:12pt;border-style:solid;border-width:0px 0px 15px;border-color:transparent;color:rgb(0,0,0)"><font face="arial, helvetica, sans-serif">Hope this helps,</font></pre><pre style="margin-top:0px;margin-bottom:0px;padding:0px;font-size:13.3333px;line-height:12pt;border-style:solid;border-width:0px 0px 15px;border-color:transparent;color:rgb(0,0,0)"><font face="arial, helvetica, sans-serif">Bill</font></pre></div></div><div class="gmail_extra"><br><div class="gmail_quote"><div><div class="h5">On Wed, Oct 19, 2016 at 9:09 PM, Ryan Connelly <span dir="ltr">&lt;<a href="mailto:rconne01@gmail.com" target="_blank">rconne01@gmail.com</a>&gt;</span> wrote:<br></div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="h5"><div dir="ltr">Hey Kacie,<div><br></div><div>I am purposely interpolating it to a plane so that I can make an apples to apples comparison to a 2 km interpolation of radar data without having to deal with beam height uncertainty.  Otherwise you&#39;re right, you can just call dbz directly, and I think it defaults to the lowest level?</div><span class="m_7787837625351633940HOEnZb"><font color="#888888"><div><br></div><div>Ryan</div></font></span></div><div class="m_7787837625351633940HOEnZb"><div class="m_7787837625351633940h5"><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Oct 19, 2016 at 9:52 PM, Kacie Shourd <span dir="ltr">&lt;<a href="mailto:Kacie.Shourd@dri.edu" target="_blank">Kacie.Shourd@dri.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">




<div>
<div style="direction:ltr;font-family:Tahoma;color:#000000;font-size:10pt">Hey Ryan,
<div><br>
</div>
<div>Could you do a printVarSummary on dbz? I don&#39;t think it has to be interpolated to a plane. I could be wrong, but I know mdbz doesn&#39;t have to be. Change</div>
<div><br>
</div>
<div><span>
<div style="font-size:13.3333px"><span style="font-family:monospace,monospace;font-size:16px">contour = wrf_contour(a,wks,dbz_plane(:,<wbr>:),opts)</span></div>
<div style="font-size:13.3333px"><font face="monospace, monospace"><span style="font-size:16px"><br>
</span></font></div>
</span><div style="font-size:13.3333px"><font face="monospace, monospace"><span style="font-size:16px">to</span></font></div>
<div style="font-size:13.3333px"><font face="monospace, monospace"><span style="font-size:16px"><br>
</span></font></div>
<div style="font-size:13.3333px"><span style="font-family:monospace,monospace;font-size:16px">contour = wrf_contour(a,wks,dbz,opts)</span></div>
</div>
<div style="font-size:13.3333px"><span style="font-family:monospace,monospace;font-size:16px"><br>
</span></div>
<div>and see if that works.</div>
<div><br>
</div>
<div>:)</div>
<div>Best</div>
<div>Kacie </div>
<div><br>
</div>
<div>
<div style="font-family:Times New Roman;color:#000000;font-size:16px">
<hr>
<div id="m_7787837625351633940m_4043099788647193936m_-1259612460610813214divRpF642207" style="direction:ltr"><font face="Tahoma" size="2" color="#000000"><b>From:</b> <a href="mailto:ncl-talk-bounces@ucar.edu" target="_blank">ncl-talk-bounces@ucar.edu</a> [<a href="mailto:ncl-talk-bounces@ucar.edu" target="_blank">ncl-talk-bounces@ucar.edu</a>] on behalf of Ryan Connelly [<a href="mailto:rconne01@gmail.com" target="_blank">rconne01@gmail.com</a>]<br>
<b>Sent:</b> Wednesday, October 19, 2016 3:07 PM<br>
<b>To:</b> ncl-talk<br>
<b>Subject:</b> [ncl-talk] Sim reflectivity not plotting<br>
</font><br>
</div><div><div class="m_7787837625351633940m_4043099788647193936h5">
<div></div>
<div>
<div dir="ltr">Hi,
<div><br>
</div>
<div>Any idea why sim reflec isn&#39;t plotting?  It&#39;s the baseline script which I&#39;ve been using and modifying for many months, but suddenly today, nothing.  No error, but no contours generated.</div>
<div><br>
</div>
<div>The WRF run has weather there: a Low, and accumulating rain, so it&#39;s surprising there&#39;s no sim reflec.</div>
<div><br>
</div>
<div>I have do_radar_reflec = 1 in the namelist, and I checked that the values weren&#39;t outside the range being plotted.  I tried switching from &quot;dbz&quot; to &quot;REFL_10CM&quot;, and neither produces any contours.</div>
<div><br>
</div>
<div>
<div><font face="monospace, monospace">     dbz = wrf_user_getvar(a,&quot;dbz&quot;,it)</font></div>
<div><font face="monospace, monospace">     z = wrf_user_getvar(a,&quot;z&quot;,it)</font></div>
<div><br>
</div>
<div><font face="monospace, monospace">     height = 2000.     ; 2 km</font></div>
<div><font face="monospace, monospace">     dbz_plane  = wrf_user_intrp3d(dbz,z,&quot;h&quot;,hei<wbr>ght,0.,False)</font></div>
<div><font face="monospace, monospace"><br>
</font></div>
<div><font face="monospace, monospace">     opts = res</font></div>
<div><span style="font-family:monospace,monospace">     opts@cnFillOn = True</span><br>
</div>
<div><font face="monospace, monospace">     opts@ContourParameters = (/ 10., 50., 2./)</font></div>
<div><font face="monospace, monospace">     contour = wrf_contour(a,wks,dbz_plane(:,<wbr>:),opts)     ; plot only lowest level</font></div>
<div><span style="font-family:monospace,monospace">     plot = wrf_map_overlays(a,wks,(/conto<wbr>ur/),pltres,mpres)</span><br>
</div>
</div>
<div><br>
</div>
<div><br>
</div>
<div>Thanks,</div>
<div>Ryan<br clear="all">
<div><br>
</div>
-- <br>
<div class="m_7787837625351633940m_4043099788647193936m_-1259612460610813214gmail_signature">
<div dir="ltr">
<div>
<div dir="ltr">
<div>
<div dir="ltr">
<div>
<div dir="ltr">
<div dir="ltr"><font size="1">Ryan Connelly</font></div>
<div dir="ltr">
<div dir="ltr" style="font-size:12.8px"><font color="#000000"><font size="1">M.S. Student in Atmospheric Sciences, </font><span style="font-size:x-small">Stony Brook University</span><br>
</font></div>
<div dir="ltr" style="font-size:12.8px">
<div><font color="#000000"><font size="1">B.S. in Meteorology with Minors in Mathematics and GIS, </font><span style="font-size:x-small">Valparaiso University</span></font></div>
</div>
<div><a href="mailto:rconne01@gmail.com" style="font-size:x-small" target="_blank">rconne01@gmail.com</a><br>
</div>
<div><font size="1"><a href="mailto:ryan.connelly@stonybrook.edu" target="_blank">ryan.connelly@stonybrook.edu</a></font></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div></div></div>
</div>
</div>
<br>
<font face="Arial" size="2">PUBLIC RECORDS NOTICE: In accordance with NRS Chapter 239, this email and responses, unless otherwise made confidential by law, may be subject to the Nevada Public Records laws and may be disclosed to the public upon request.</font>
</div>

</blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="m_7787837625351633940m_4043099788647193936gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div dir="ltr"><font size="1">Ryan Connelly</font></div><div dir="ltr"><div dir="ltr" style="font-size:12.8000001907349px"><font color="#000000"><font size="1">M.S. Student in Atmospheric Sciences, </font><span style="font-size:x-small">Stony Brook University</span><br></font></div><div dir="ltr" style="font-size:12.8000001907349px"><div><font color="#000000"><font size="1">B.S. in Meteorology with Minors in Mathematics and GIS, </font><span style="font-size:x-small">Valparaiso University</span></font></div></div><div><a href="mailto:rconne01@gmail.com" style="font-size:x-small" target="_blank">rconne01@gmail.com</a><br></div><div><font size="1"><a href="mailto:ryan.connelly@stonybrook.edu" target="_blank">ryan.connelly@stonybrook.edu</a></font></div></div></div></div></div></div></div></div></div></div>
</div>
</div></div><br></div></div>______________________________<wbr>_________________<br>
ncl-talk mailing list<br>
<a href="mailto:ncl-talk@ucar.edu" target="_blank">ncl-talk@ucar.edu</a><br>
List instructions, subscriber options, unsubscribe:<br>
<a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">http://mailman.ucar.edu/mailma<wbr>n/listinfo/ncl-talk</a><br>
<br></blockquote></div><br></div>
</blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div dir="ltr"><font size="1">Ryan Connelly</font></div><div dir="ltr"><div dir="ltr" style="font-size:12.8000001907349px"><font color="#000000"><font size="1">M.S. Student in Atmospheric Sciences, </font><span style="font-size:x-small">Stony Brook University</span><br></font></div><div dir="ltr" style="font-size:12.8000001907349px"><div><font color="#000000"><font size="1">B.S. in Meteorology with Minors in Mathematics and GIS, </font><span style="font-size:x-small">Valparaiso University</span></font></div></div><div><a href="mailto:rconne01@gmail.com" style="font-size:x-small" target="_blank">rconne01@gmail.com</a><br></div><div><font size="1"><a href="mailto:ryan.connelly@stonybrook.edu" target="_blank">ryan.connelly@stonybrook.edu</a></font></div></div></div></div></div></div></div></div></div></div>
</div>