<div dir="ltr">Hi:<div><br></div><div>Thank you for the suggestion.</div><div><br></div><div>The first attachment show what the old code produced.</div><div><br></div><div>The second the new with my interpreted changes based on your suggestion. I added those resources to res and zres.</div><div><br></div><div>The result was that now I see &quot;Relative Humidity&quot; on the left and gpm on the right.  Before, there was &quot;Relative Humidity&quot; and &quot;Geopotential Height&quot; on the left.</div><div><br></div><div>I really would like to push Relative Humidity down to the label bar, but am also curious what I&#39;ve done incorrectly in trying to place the labels on the left and right sides.</div><div><br></div><div>Thank you</div><div>P.S. the get_ij,f needs to be &quot;WRAPPED.&quot;</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Nov 25, 2016 at 1:41 PM,  <span dir="ltr">&lt;<a href="mailto:gtego@physics.auth.gr" target="_blank">gtego@physics.auth.gr</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi!<br>
<br>
The resources<br>
<br>
   gsnLeftStringParallelPosF<br>
   gsnLeftStringOrthogonalPosF<br>
<br>
   gsnRightStringParallelPosF<br>
   gsnRightStringOrthogonalPosF<br>
<br>
set the horizontal and vertical position for the &quot;long_name&quot; and<br>
&quot;unit&quot; respectively.<br>
<br>
Setting them (Parallel~ 0.5 and Orthogonal~ -1.5) before plotting the<br>
Relative Humidity plot does the job.<br>
<br>
<br>
Giannis Tegoulias<br>
<span class=""><br>
<br>
<br>
<br>
Quoting Barry Lynn &lt;<a href="mailto:barry.h.lynn@gmail.com">barry.h.lynn@gmail.com</a>&gt;:<br>
<br>
&gt; Hi:<br>
&gt;<br>
&gt; I haven&#39;t been able to move the title Relative Humidity to the label bar<br>
&gt; below. Nor, can I move it to the right.  Part of the problem is that I<br>
&gt; don&#39;t know how to reference them, so setting their position with title<br>
&gt; position information doesn&#39;t help.<br>
&gt;<br>
&gt; The name Relative Humidity, like the name Geopotential Height, comes from<br>
&gt; the attribute list.<br>
&gt;<br>
&gt; Usually, titles (data attributes) are automatically placed correctly on the<br>
&gt; page.<br>
&gt;<br>
&gt; I have consulted pages like:<br>
&gt;<br>
&gt; <a href="https://www.ncl.ucar.edu/Applications/title.shtml" rel="noreferrer" target="_blank">https://www.ncl.ucar.edu/<wbr>Applications/title.shtml</a><br>
&gt;<br>
&gt; and I have read about variable attributes,<br>
&gt;<br>
&gt; <a href="https://www.ncl.ucar.edu/Document/Manuals/Ref_Manual/NclVariables.shtml" rel="noreferrer" target="_blank">https://www.ncl.ucar.edu/<wbr>Document/Manuals/Ref_Manual/<wbr>NclVariables.shtml</a><br>
&gt;<br>
</span>&gt; *Moreover: the page that deals with Overlays shows an example where the<br>
<span class="">&gt; variable names are space correctly, but never referenced (or their<br>
</span>&gt; positions defined).*<br>
<div><div class="h5">&gt;<br>
&gt; <a href="http://www.ncl.ucar.edu/Applications/Scripts/overlay_1.ncl" rel="noreferrer" target="_blank">http://www.ncl.ucar.edu/<wbr>Applications/Scripts/overlay_<wbr>1.ncl</a><br>
&gt;<br>
&gt; I have made other searches using various key words, but this situation<br>
&gt; seems to be unusual (as resulting from the use of overlay).<br>
&gt;<br>
&gt; I realize that this may be a trivial thing, but it is not unimportant.<br>
&gt;<br>
&gt; Thank you for solving this problem.<br>
&gt;<br>
&gt; Barry Lynn<br>
&gt;<br>
&gt; On Thu, Nov 24, 2016 at 3:13 AM, David Brown &lt;<a href="mailto:dbrown@ucar.edu">dbrown@ucar.edu</a>&gt; wrote:<br>
&gt;<br>
&gt;&gt; I am attaching a modified script that works on your data (except you need<br>
&gt;&gt; to figure out what you want to do about the titles). Most of your script<br>
&gt;&gt; was okay except for a few crucial points.<br>
&gt;&gt;<br>
&gt;&gt; Main points to remember:<br>
&gt;&gt; All the resource warning messages come from setting map resources for a<br>
&gt;&gt; plot that does not include a map -- the warnings are not fatal, these<br>
&gt;&gt; resources will simply be ignored. So don&#39;t copy the resources from the<br>
&gt;&gt; contour map to the plain contour. Instead start over with a new resource<br>
&gt;&gt; variable. You had<br>
&gt;&gt; zres = res     ; copies all the attributes of &quot;res&quot; to &quot;zres&quot;<br>
&gt;&gt; Instead<br>
&gt;&gt; zres = True<br>
&gt;&gt;<br>
&gt;&gt; Since you are doing a native plot (tfDoNDCOverlay = True) you also need to<br>
&gt;&gt; set this for the overlay plot (contour_z):<br>
&gt;&gt;<br>
&gt;&gt; zres@tfDoNDCOverlay = True<br>
&gt;&gt;<br>
&gt;&gt; Finally whenever you call the &quot;draw&quot; routine, you also need to call<br>
&gt;&gt; &quot;frame&quot;, so:<br>
&gt;&gt;<br>
&gt;&gt; draw(contour_rh)<br>
&gt;&gt; frame(wks)<br>
&gt;&gt;<br>
&gt;&gt; Hope this helps.<br>
&gt;&gt;  -dave<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; On Wed, Nov 23, 2016 at 12:58 PM, Barry Lynn &lt;<a href="mailto:barry.h.lynn@gmail.com">barry.h.lynn@gmail.com</a>&gt;<br>
&gt;&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt;&gt; Dave: Please see below.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; But first: Here are the three components needed to test the program.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; 1) The file, 2) the ncl program, and 3 the get_ij.f, which has to be<br>
&gt;&gt;&gt; wrapped.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Dave: You wrote:  &quot;The problem is that both your individual plots are<br>
&gt;&gt;&gt; drawn using a map projection. You should draw the contour_z field<br>
&gt;&gt;&gt; without the map<br>
&gt;&gt;&gt; projection using &quot;gsn_csm_contour&quot;. Then you will be able to do the<br>
&gt;&gt;&gt; overlay without error.&quot;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; If I remove the &quot;map&quot; from the second gsn_csm_contour command, I just get<br>
&gt;&gt;&gt; those warnings again and no overlay.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Thank you,​<br>
</div></div>&gt;&gt;&gt;  namanl_218_20130208_1800_000.<wbr>grb<br>
&gt;&gt;&gt; &lt;<a href="https://drive.google.com/file/d/0B3E3GjUeKpBdQWhSVFpISWM2SkE/view?usp=drive_web" rel="noreferrer" target="_blank">https://drive.google.com/<wbr>file/d/<wbr>0B3E3GjUeKpBdQWhSVFpISWM2SkE/<wbr>view?usp=drive_web</a>&gt;<br>
<div class="HOEnZb"><div class="h5">&gt;&gt;&gt; ​<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; On Wed, Nov 23, 2016 at 9:26 PM, Barry Lynn &lt;<a href="mailto:barry.h.lynn@gmail.com">barry.h.lynn@gmail.com</a>&gt;<br>
&gt;&gt;&gt; wrote:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Hello:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; I am trying to overlay the height field from the NAM on the relative<br>
&gt;&gt;&gt;&gt; humidity.<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; I succeeded to zoom and project the NAM fields correctly, and I<br>
&gt;&gt;&gt;&gt; succeeded to make two separate plots, both of which were projected<br>
&gt;&gt;&gt;&gt; correctly.<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; I consulted these two pages.<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; <a href="http://www.ncl.ucar.edu/Applications/Scripts/lcnative_2.ncl" rel="noreferrer" target="_blank">http://www.ncl.ucar.edu/<wbr>Applications/Scripts/lcnative_<wbr>2.ncl</a><br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; and:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; <a href="http://www.ncl.ucar.edu/Applications/Scripts/conOncon_2.ncl" rel="noreferrer" target="_blank">http://www.ncl.ucar.edu/<wbr>Applications/Scripts/conOncon_<wbr>2.ncl</a><br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; I can create test.00001, and test.00002 using the attached ncl code.<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; However, I cannot create the overlay.<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; I try to do this using the last two lines of the code:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;   overlay(contour_rh,contour_z)<br>
&gt;&gt;&gt;&gt;   draw(contour_rh)<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; But, I get this error.<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; fatal:NhlAddOverlay: plot class mapPlotClass cannot be overlay plot<br>
&gt;&gt;&gt;&gt; member<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; If I try to change gsn_csm_contour_map to gsn_csm_contour to then invoke<br>
&gt;&gt;&gt;&gt; the overlay procedure, I get:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; warning:mpProjection is not a valid resource in test_contour at this time<br>
&gt;&gt;&gt;&gt; warning:mpLimitMode is not a valid resource in test_contour at this time<br>
&gt;&gt;&gt;&gt; warning:mpLeftCornerLonF is not a valid resource in test_contour at this<br>
&gt;&gt;&gt;&gt; time<br>
&gt;&gt;&gt;&gt; warning:mpRightCornerLonF is not a valid resource in test_contour at<br>
&gt;&gt;&gt;&gt; this time<br>
&gt;&gt;&gt;&gt; warning:mpLeftCornerLatF is not a valid resource in test_contour at this<br>
&gt;&gt;&gt;&gt; time<br>
&gt;&gt;&gt;&gt; warning:mpRightCornerLatF is not a valid resource in test_contour at<br>
&gt;&gt;&gt;&gt; this time<br>
&gt;&gt;&gt;&gt; warning:mpLambertMeridianF is not a valid resource in test_contour at<br>
&gt;&gt;&gt;&gt; this time<br>
&gt;&gt;&gt;&gt; warning:mpLambertParallel1F is not a valid resource in test_contour at<br>
&gt;&gt;&gt;&gt; this time<br>
&gt;&gt;&gt;&gt; warning:mpLambertParallel2F is not a valid resource in test_contour at<br>
&gt;&gt;&gt;&gt; this time<br>
&gt;&gt;&gt;&gt; warning:mpOutlineDrawOrder is not a valid resource in test_contour at<br>
&gt;&gt;&gt;&gt; this time<br>
&gt;&gt;&gt;&gt; warning:mpFillOn is not a valid resource in test_contour at this time<br>
&gt;&gt;&gt;&gt; warning:mpOutlineBoundarySets is not a valid resource in test_contour at<br>
&gt;&gt;&gt;&gt; this time<br>
&gt;&gt;&gt;&gt; fatal:NhlAddOverlay: plot class mapPlotClass cannot be overlay plot<br>
&gt;&gt;&gt;&gt; member<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; and the projection is lost.<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Your suggestions are appreciated.<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Barry Lynn<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; --<br>
&gt;&gt;&gt;&gt; Barry H. Lynn, Ph.D<br>
&gt;&gt;&gt;&gt; Senior Lecturer,<br>
&gt;&gt;&gt;&gt; The Institute of the Earth Science,<br>
&gt;&gt;&gt;&gt; The Hebrew University of Jerusalem,<br>
&gt;&gt;&gt;&gt; Givat Ram, Jerusalem 91904, Israel<br>
&gt;&gt;&gt;&gt; Tel: 972 547 231 170<br>
&gt;&gt;&gt;&gt; Fax: (972)-25662581<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; C.E.O, Weather It Is, LTD<br>
&gt;&gt;&gt;&gt; Weather and Climate Focus<br>
&gt;&gt;&gt;&gt; <a href="http://weather-it-is.com" rel="noreferrer" target="_blank">http://weather-it-is.com</a><br>
&gt;&gt;&gt;&gt; Jerusalem, Israel<br>
&gt;&gt;&gt;&gt; Local: 02 930 9525<br>
&gt;&gt;&gt;&gt; Cell: 054 7 231 170<br>
&gt;&gt;&gt;&gt; Int-IS: x972 2 930 9525<br>
&gt;&gt;&gt;&gt; US 914 432 3108<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; --<br>
&gt;&gt;&gt; Barry H. Lynn, Ph.D<br>
&gt;&gt;&gt; Senior Lecturer,<br>
&gt;&gt;&gt; The Institute of the Earth Science,<br>
&gt;&gt;&gt; The Hebrew University of Jerusalem,<br>
&gt;&gt;&gt; Givat Ram, Jerusalem 91904, Israel<br>
&gt;&gt;&gt; Tel: 972 547 231 170<br>
&gt;&gt;&gt; Fax: (972)-25662581<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; C.E.O, Weather It Is, LTD<br>
&gt;&gt;&gt; Weather and Climate Focus<br>
&gt;&gt;&gt; <a href="http://weather-it-is.com" rel="noreferrer" target="_blank">http://weather-it-is.com</a><br>
&gt;&gt;&gt; Jerusalem, Israel<br>
&gt;&gt;&gt; Local: 02 930 9525<br>
&gt;&gt;&gt; Cell: 054 7 231 170<br>
&gt;&gt;&gt; Int-IS: x972 2 930 9525<br>
&gt;&gt;&gt; US 914 432 3108<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; ______________________________<wbr>_________________<br>
&gt;&gt;&gt; ncl-talk mailing list<br>
&gt;&gt;&gt; <a href="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</a><br>
&gt;&gt;&gt; List instructions, subscriber options, unsubscribe:<br>
&gt;&gt;&gt; <a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">http://mailman.ucar.edu/<wbr>mailman/listinfo/ncl-talk</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;<br>
&gt;<br>
&gt; --<br>
&gt; Barry H. Lynn, Ph.D<br>
&gt; Senior Lecturer,<br>
&gt; The Institute of the Earth Science,<br>
&gt; The Hebrew University of Jerusalem,<br>
&gt; Givat Ram, Jerusalem 91904, Israel<br>
&gt; Tel: 972 547 231 170<br>
&gt; Fax: (972)-25662581<br>
&gt;<br>
&gt; C.E.O, Weather It Is, LTD<br>
&gt; Weather and Climate Focus<br>
&gt; <a href="http://weather-it-is.com" rel="noreferrer" target="_blank">http://weather-it-is.com</a><br>
&gt; Jerusalem, Israel<br>
&gt; Local: 02 930 9525<br>
&gt; Cell: 054 7 231 170<br>
&gt; Int-IS: x972 2 930 9525<br>
&gt; US 914 432 3108<br>
<br>
<br>
<br>
______________________________<wbr>_________________<br>
ncl-talk mailing list<br>
<a href="mailto:ncl-talk@ucar.edu">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/<wbr>mailman/listinfo/ncl-talk</a><br>
</div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature" 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 914 432 3108<br></div></div></div>
</div>