<div dir="ltr"><div class="gmail_default" style="font-size:small">Barry,</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">It would help if I could see your full script so I can see what resources you are already setting.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">I think you can turn this line off with:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small"> res@mpGridAndLimbOn = False</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">But, I&#39;m not 100% sure if that line is coming from the lat/lon grid being turned on. If the above resource doesn&#39;t do it, then I will need to see your full script. You can send it to me offline if you are concerned about sending it to ncl-talk.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">--Mary</div><div class="gmail_default" style="font-size:small"><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Aug 30, 2016 at 10:28 PM, Barry Lynn <span dir="ltr">&lt;<a href="mailto:barry.h.lynn@gmail.com" target="_blank">barry.h.lynn@gmail.com</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 Mary:<div><br></div><div>Thank you.</div><div><br></div><div>However, I am left with the Meridianol line (e.g., first map plot)..</div><div><br></div><div>And this resource is not recognized in vector plot.</div><div><br></div><div><div>warning:gsnAddCyclic is not a valid resource in wrfwinds_vector at this time.</div></div><span class="HOEnZb"><font color="#888888"><div><br></div><div>Barry</div><div><br></div><div><br></div><div><br></div></font></span></div><div class="HOEnZb"><div class="h5"><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Aug 31, 2016 at 12:48 AM, Mary Haley <span dir="ltr">&lt;<a href="mailto:haley@ucar.edu" target="_blank">haley@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"><div class="gmail_default" style="font-size:small">Barry,</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">You generally don&#39;t want to set resources using get_res_value_keep, because this is an internal function.<br></div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">Instead of:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small"><span><div style="font-size:12.8px">      opts@mpDataBaseVersion     = get_res_value_keep(opts, &quot;mpDataBaseVersion&quot;,&quot;HighRes&quot;)</div><div><br></div></span><div>you should be able to set the resource directly:</div><div><br></div><div><div style="font-size:12.8px">      opts@mpDataBaseVersion  = &quot;HighRes&quot;</div></div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px">The reason you are not seeing the map resource take effect is because you are trying to set a map resource when creating a vector plot.</div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px">You can&#39;t set the map resources until you get to the &quot;wrf_map_overlays&quot; call:</div><div style="font-size:12.8px"><pre>  mpres = True
  mpres@mpDataBaseVersion = &quot;HighRes&quot;
  .  .  . set other map resources here as desired . . .</pre><pre>  ov = wrf_map_overlays(a,wks,(/conto<wbr>ur_tf,contour_psl,vector/),<wbr>True,mpres)</pre></div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px"><br></div></div><div class="gmail_default" style="font-size:small"><br></div></div><div class="gmail_extra"><br><div class="gmail_quote"><div><div>On Tue, Aug 30, 2016 at 4:16 AM, Barry Lynn <span dir="ltr">&lt;<a href="mailto:barry.h.lynn@gmail.com" target="_blank">barry.h.lynn@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><div dir="ltr"><span style="font-size:12.8px">Hi:</span><div style="font-size:12.8px"><br></div><div style="font-size:12.8px">I have tried various options to turn off state and other boundary lines but to no avail.</div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px"><div>      opts@mpDataBaseVersion     = get_res_value_keep(opts, &quot;mpDataBaseVersion&quot;,&quot;HighRes&quot;)</div><div>      opts@mpOutlineBoundarySets = get_res_value_keep(opts, &quot;mpOutlineBoundarySets&quot;, &quot;NoBoundaries&quot;)</div><div>      opts@mpOutlineBoundarySets = &quot;NoBoundaries&quot;</div><div>      vector = wrf_vector(a,wks,u10,v10,opts)</div><div><br></div><div>I have also tried this by itself.</div><div><br></div><div><div style="font-size:12.8px">res@mpOutlineBoundarySets = &quot;NoBoundaries&quot;</div></div><div><br></div><div>In the old WRF_NCL I used &quot;HighRes&quot; database with these settings in WRFPlot.<span>ncl</span> (which I can&#39;t find in the new version).</div><div><br></div><div><div>      opts@mpDataBaseVersion     = get_res_value_keep(opts, &quot;mpDataBaseVersion&quot;,&quot;HighRes&quot;)</div><div>       opts@mpOutlineBoundarySets = get_res_value_keep(opts, &quot;mpOutlineBoundarySets&quot;, &quot;AllBoundaries&quot;)</div><div>;     opts@mpOutlineBoundarySets = get_res_value_keep(opts, &quot;mpOutlineBoundarySets&quot;, &quot;GeophysicalAndUSStates&quot;)</div></div><div><br></div><div><br></div><div>Does someone have a suggestion?  I am using version 6+.</div><div><br></div><div>Thank you,</div></div><div><br></div>-- <br><div data-smartmail="gmail_signature"><div dir="ltr">Barry H. Lynn, Ph.D<div><div>Senior Lecturer,</div><div><div><span style="color:rgb(136,136,136)">The Institute of the Earth Science, </span><br style="color:rgb(136,136,136)"><span style="color:rgb(136,136,136)">The Hebrew University of Jerusalem, </span><br style="color:rgb(136,136,136)"><span style="color:rgb(136,136,136)">Givat Ram, Jerusalem 91904, Israel </span><br style="color:rgb(136,136,136)"></div><span style="color:rgb(136,136,136)">Tel: 972 547 231 170</span><br style="color:rgb(136,136,136)"><span style="color:rgb(136,136,136)">Fax: (972)-25662581</span></div></div><div><span style="color:rgb(136,136,136)"><br></span></div><div>C.E.O, Weather It Is, LTD<br>Weather and Climate Focus<br><a href="http://weather-it-is.com" target="_blank">http://weather-it-is.com</a><br>Jerusalem, Israel<br>Local: 02 930 9525<br>Cell: 054 7 231 170<br>Int-IS: x972 2 930 9525<br>US <a href="tel:914%20432%203108" value="+19144323108" target="_blank">914 432 3108</a><br></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 data-smartmail="gmail_signature"><div dir="ltr">Barry H. Lynn, Ph.D<div><div>Senior Lecturer,</div><div><div><span style="color:rgb(136,136,136)">The Institute of the Earth Science, </span><br style="color:rgb(136,136,136)"><span style="color:rgb(136,136,136)">The Hebrew University of Jerusalem, </span><br style="color:rgb(136,136,136)"><span style="color:rgb(136,136,136)">Givat Ram, Jerusalem 91904, Israel </span><br style="color:rgb(136,136,136)"></div><span style="color:rgb(136,136,136)">Tel: 972 547 231 170</span><br style="color:rgb(136,136,136)"><span style="color:rgb(136,136,136)">Fax: (972)-25662581</span></div></div><div><span style="color:rgb(136,136,136)"><br></span></div><div>C.E.O, Weather It Is, LTD<br>Weather and Climate Focus<br><a href="http://weather-it-is.com" target="_blank">http://weather-it-is.com</a><br>Jerusalem, Israel<br>Local: 02 930 9525<br>Cell: 054 7 231 170<br>Int-IS: x972 2 930 9525<br>US <a href="tel:914%20432%203108" value="+19144323108" target="_blank">914 432 3108</a><br></div></div></div>
</div>
</div></div></blockquote></div><br></div>