<div dir="ltr">Hi Alex ,<div><br></div><div>When i add </div><div><div> opts@gsnDraw = False</div><div> opts@gsnFrame = False   </div></div><div> or </div><div><div> res@gsnDraw = False</div><div> res@gsnFrame = False   </div></div><div><br></div><div>and also </div><div><br></div><div><div> pltres@gsnDraw = False</div><div> pltres@gsnFrame = False </div></div><div><br></div><div>I get only grid with the box and the marker like attached. </div><div><br></div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">2015-05-26 20:47 GMT-04:00 Alex Schaefer <span dir="ltr">&lt;<a href="mailto:alexander.schaefer@mines.sdsmt.edu" target="_blank">alexander.schaefer@mines.sdsmt.edu</a>&gt;</span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word">Rabah,<div><br></div><div>Where in your script did you add the resources suggested by Jared?</div><div><br></div><div>Since you have a bunch of different resource objects you will need to set it in each going into plots controlling plot resources. For you this should include res or opts and likely pltres.</div><span class="HOEnZb"><font color="#888888"><div><br></div><div>-Alex</div></font></span><div><div class="h5"><div><br></div><div><br><div><div>On May 26, 2015, at 6:36 PM, Rabah Hachelaf &lt;<a href="mailto:hachelaf@sca.uqam.ca" target="_blank">hachelaf@sca.uqam.ca</a>&gt; wrote:</div><br><blockquote type="cite"><div dir="ltr">Hi Jared,<div><br></div><div>Thanks for your reponse,</div><div><br></div><div>But add  </div><div><br></div><div><br></div><div><div style="font-size:12.8000001907349px">res@gsnDraw = False<br></div><span style="font-size:12.8000001907349px">res@gsnFrame = False</span><br></div><div><br></div><div>doesn&#39;t change any things. </div><div><br></div><div>Rabah</div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">2015-05-26 18:34 GMT-04:00 Jared Lee <span dir="ltr">&lt;<a href="mailto:jaredlee@ucar.edu" target="_blank">jaredlee@ucar.edu</a>&gt;</span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div><div><div><div>Hi Rabah,<br><br></div>I believe what you&#39;re missing is these two lines where you set other &#39;res&#39; resources:<br><br></div>res@gsnDraw = False<br></div>res@gsnFrame = False<br><br></div>By default they&#39;re both set to True, which would give you two separate images. If you set both to false you should get a single plot with your polymarker overlaid.<br><br></div><div>Hope that helps.<br></div><div><br></div>Jared<br></div><div class="gmail_extra"><br><div class="gmail_quote"><div><div>On Tue, May 26, 2015 at 4:21 PM, Rabah Hachelaf <span dir="ltr">&lt;<a href="mailto:hachelaf@sca.uqam.ca" target="_blank">hachelaf@sca.uqam.ca</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"><div><br></div><div><br></div><div>Hello NCL users,</div><div><br></div><div>I am using the script below to plot a box and a marker dot over topography field from WRF outputs,</div><div><br></div><div>My problem is i can not get one figure, i get two separate figures like attached. </div><div><br></div><div>Any suggestion to solve this.</div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div>;   Example script - plot terrain (using some basic WRF scripts)</div><div>;   Overwrite basic map background settings</div><div>;   November 2008</div><div><br></div><div>load &quot;$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl&quot;</div><div>load &quot;$NCARG_ROOT/lib/ncarg/nclscripts/wrf/WRFUserARW.ncl&quot;</div><div><br></div><div>begin</div><div><br></div><div>  a = addfile(&quot;../<a href="http://geo_em.d02.nc/" target="_blank">geo_em.d02.nc</a>&quot;,&quot;r&quot;)           ; Open a file</div><div>  filename = &quot;../namelist.wps&quot;</div><div><br></div><div>  npres= True</div><div>  npres@ref_lat   = stringtofloat(systemfunc(&quot;grep ref_lat    &quot; +filename+ &quot; | cut -f2 -d&#39;=&#39; | cut -f1 -d&#39;,&#39;&quot; ) )</div><div>  npres@ref_lon   = stringtofloat(systemfunc(&quot;grep ref_lon    &quot; +filename+ &quot; | cut -f2 -d&#39;=&#39; | cut -f1 -d&#39;,&#39;&quot; ) )</div><div><br></div><div> type = &quot;png&quot;</div><div>  wks = gsn_open_wks(type,&quot;plt_geo_6&quot;)         ; Create a plot workstation</div><div><br></div><div><br></div><div>  opts = True                                  ; Set some Basic Plot options</div><div>  opts@MainTitle = &quot;GEOGRID FIELDS&quot;</div><div>  opts@InitTime = False                        ; Do not plot time or footers</div><div>  opts@Footer = False    </div><div><br></div><div>  ter = wrf_user_getvar(a,&quot;HGT_M&quot;,0)           ; Read the variable to memory</div><div>  lon = a-&gt;XLONG_U(0,:,:)</div><div>  lat = a-&gt;XLAT_U(0,:,:)</div><div> printVarSummary(lat) </div><div> </div><div> print (lat(0,0)+&quot;, &quot;+lon(0,0)+&quot;,0,&quot;)</div><div> print (lat(0,60)+&quot;, &quot;+lon(0,60)+&quot;,0,&quot;)</div><div> print (lat(59,60)+&quot;, &quot;+lon(59,60)+&quot;,0,&quot;)</div><div> print (lat(59,0)+&quot;, &quot;+lon(59,0)+&quot;,0&quot;)</div><div> </div><div> </div><div>  res = opts                                   ; Use basic options for this field</div><div>  res@cnFillOn = True                          ; Create a color fill plot</div><div>  res@ContourParameters = (/ 0., 1000., 50. /) ; Set the levels</div><div><br></div><div>  contour = wrf_contour(a,wks,ter,res)</div><div><br></div><div>  pltres = True                                ; Set plot options</div><div>  mpres = True                                 ; Set map options</div><div>  mpres@mpGeophysicalLineColor      = &quot;Black&quot;  ; Overwrite basic map settings</div><div>  mpres@mpGridLineColor             = &quot;Black&quot;</div><div>  mpres@mpLimbLineColor             = &quot;Black&quot;</div><div>  mpres@mpNationalLineColor         = &quot;Black&quot;</div><div>  mpres@mpPerimLineColor            = &quot;Black&quot;</div><div>  mpres@mpUSStateLineColor          = &quot;Black&quot;</div><div>     mpres@mpProjection = &quot;LambertConformal&quot;</div><div>       mpres@mpLambertParallel1F = 30</div><div>       mpres@mpLambertParallel2F = 60 </div><div>       mpres@mpLambertMeridianF = -98</div><div>       mpres@mpGridSpacingF     = 0.25</div><div>;************************************************</div><div>; add the box</div><div>;************************************************</div><div>;************************************************</div><div> ypts = (/ lat(10,10), lat(10,50), lat(49,50),  lat(49,10),  lat(10,10)/)</div><div> xpts = (/ lon(10,10), lon(10,50), lon(49,50),  lon(49,10),  lon(10,10)/)</div><div>;************************************************</div><div><br></div><div>  resp                  = True                      ; polyline mods desired</div><div>  resp@gsLineColor      = &quot;black&quot;                     ; color of lines</div><div>  resp@gsLineThicknessF = 2.0                       ; thickness of lines</div><div>;  resp@gsLineLabelString= &quot;test&quot;                    ; adds a line label string</div><div>   </div><div><br></div><div>       </div><div>  plot = wrf_map_overlays(a,wks,(/contour/),pltres,mpres) ; Plot field over map background</div><div>  </div><div>  </div><div>  dum = new(4,graphic) </div><div>  do i = 0 , 3</div><div>    dum(i)=gsn_add_polyline(wks,plot,xpts(i:i+1),ypts(i:i+1),resp)      </div><div>  end do </div><div>;********************************************************* </div><div>  mpres@gsMarkerColor = &quot;Black&quot;</div><div>  mpres@gsMarkerIndex = 16</div><div>  mpres@gsMarkerSizeF = 0.005</div><div>  gsn_polymarker(wks,plot,npres@ref_lon,npres@ref_lat,mpres)</div><div>   </div><div>  draw(plot)</div><div>  frame(wks)</div><div> </div><div>end</div><span><font color="#888888"><div><br></div>-- <br><div><div dir="ltr"><div>------------------------------</div>Cordialement,<br>Best regards,<br>Rabah Hachelaf <br></div></div>
</font></span></div>
<br></div></div>_______________________________________________<br>
ncl-talk mailing list<br>
List instructions, subscriber options, unsubscribe:<br>
<a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a><br>
<br></blockquote></div><span><font color="#888888"><br><br clear="all"><br>-- <br><div><div dir="ltr"><div><div><div><div><div><font face="courier new, monospace">===============================<br>Jared A. Lee, Ph.D.<br></font></div><font face="courier new, monospace">Project Scientist I<br></font></div><font face="courier new, monospace">Research Applications Laboratory<br></font></div><font face="courier new, monospace">National Center for Atmospheric Research<br>Boulder, Colorado, USA<br><br></font></div><font face="courier new, monospace">Email: <a href="mailto:jaredlee@ucar.edu" target="_blank">jaredlee@ucar.edu</a> (w)<br></font></div><font face="courier new, monospace">Phone: 303.497.8485 (w)</font><div><font face="courier new, monospace">Web: <a href="https://staff.ucar.edu/users/jaredlee" target="_blank">https://staff.ucar.edu/users/jaredlee</a><br>===============================</font><br></div></div></div>
</font></span></div>
<br>_______________________________________________<br>
ncl-talk mailing list<br>
List instructions, subscriber options, unsubscribe:<br>
<a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a><br>
<br></blockquote></div><br><br clear="all"><div><br></div>-- <br><div><div dir="ltr"><div>------------------------------</div>Cordialement,<br>Best regards,<br>Rabah Hachelaf <br></div></div>
</div>
_______________________________________________<br>ncl-talk mailing list<br>List instructions, subscriber options, unsubscribe:<br><a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a><br></blockquote></div><br></div></div></div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature"><div dir="ltr"><div>------------------------------</div>Cordialement,<br>Best regards,<br>Rabah Hachelaf <br></div></div>
</div>