<div dir="ltr">It worked perfect,<br><br>Thank you very much Alexander!<br><br><br>Kind regards,<br>Sebastián.</div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Apr 29, 2015 at 10:33 PM, Alexander Schaefer <span dir="ltr">&lt;<a href="mailto:alexander.schaefer@mines.sdsmt.edu" target="_blank">alexander.schaefer@mines.sdsmt.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="auto"><div>Sebastian,</div><div><br></div><div>Try adding pltres@FramePlot = False</div><div><br></div><div>I think it is still framing the plot before you add the annotations, gsnDraw and gsnFrame are more related to the plot than the map.  See the link below for where the information comes from. I think this is the only change you need in your script.</div><div><br></div><div><a href="https://www.ncl.ucar.edu/Document/Functions/WRF_arw/wrf_map_overlays.shtml" target="_blank">https://www.ncl.ucar.edu/Document/Functions/WRF_arw/wrf_map_overlays.shtml</a></div><div><br></div><div><br></div><div>Hope that helps,</div><div>-Alex</div><div><div class="h5"><div><br></div><div><br><br><br></div><div><br>On Apr 29, 2015, at 7:21 PM, Sebastian Otarola-Bustos &lt;<a href="mailto:Sebastian.F.Otarola-Bustos.1@nd.edu" target="_blank">Sebastian.F.Otarola-Bustos.1@nd.edu</a>&gt; wrote:<br><br></div><blockquote type="cite"><div><div dir="ltr"><div><br></div><div>Hi all, </div><div><br></div><div>I&#39;m trying to add the location of a city and it&#39;s name in the same plot of a contour-terrain heights drawn over a map.</div><div><br></div><div>I&#39;m editing the  <b style="font-style:italic">wrf_wps_ter6.ncl </b>example script. And it works fine plotting the map and the topography, but it doesn&#39;t shows me the polymarker and the name of the city. </div><div><br></div><div>If someone see my mistake, I would really aprecciate his help.<br><br>Best regards,<br>Sebastián. </div><div><br><br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">load &quot;$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl&quot;<br>load &quot;$NCARG_ROOT<i>/lib/ncarg/nclscripts/wrf/WRFUserARW.ncl&quot;</i><br>begin<br> a=addfile(&quot;/afs/<a href="http://crc.nd.edu/user/s/sotarola/WRF/Santiago/Sim/1/geo_em.d01.nc" target="_blank">crc.nd.edu/user/s/sotarola/WRF/Santiago/Sim/1/geo_em.d01.nc</a>&quot;,&quot;r&quot;)<br><br>  type = &quot;pdf&quot;<br>  wks = gsn_open_wks(type,&quot;Norte&quot;)         ; Create a plot workstation<br><br>  opts = True                                  ; Set some Basic Plot options<br>  opts@MainTitle = &quot;GEOGRID FIELDS&quot;<br>  opts@InitTime = False                        ; Do not plot time or footers<br>  opts@Footer = False<br>  ter = wrf_user_getvar(a,&quot;HGT_M&quot;,0)           ; Read the variable to memory<br>  lat  = wrf_user_getvar(a,&quot;lat&quot;,-1)<br>  lon  = wrf_user_getvar(a,&quot;lon&quot;,-1)<br>  opt = True<br>  loc1 = wrf_user_ll_to_ij(a,-70.63929,-33.35079,opt)  ; Chanaral<br>  loc1 = loc1-1;<br>  res = opts            <br> res@cnFillOn = True                          ; Create a color fill plot<br>  res@ContourParameters = (/ 0., 5000., 50. /) ; Set the levels<br>  <br>  contour = wrf_contour(a,wks,ter,res)<br>  pltres = True<br>  pltres@PanelPlot = True                             ; Set plot options<br>  mpres = True                                 ; Set map options<br>  mpres@mpGeophysicalLineColor      = &quot;Black&quot;  ; Overwrite basic map settings<br>  mpres@mpGridLineColor             = &quot;Black&quot;<br>  mpres@mpLimbLineColor             = &quot;Black&quot;<br>  mpres@mpNationalLineColor         = &quot;Black&quot;<br>  mpres@mpPerimLineColor            = &quot;Black&quot;<br>  mpres@mpUSStateLineColor          = &quot;Black&quot;<br>  mpres@gsnDraw = False<br>  mpres@gsnFrame =False<br>  plot = wrf_map_overlays(a,wks,(/contour/),pltres,mpres) ; Plot field over map background<br> ; Poly res desired<br>  resp = True<br>  resp@gsMarkerColor = &quot;Black&quot;<br>  resp@gsMarkerIndex = 16 ; black dot<br>  resp@gsMarkerSizeF = 0.01<br>  gsn_polymarker(wks,plot,lon(0,loc1(1),loc1(0)),lat(0,loc1(1),loc1(0)),resp) ;<br>; Add the name of the station<br>   txres= True<br>   txres@txFontHeightF = 0.015 ; text font height<br>   gsn_text(wks,plot,&quot;Chanaral&quot;,lon(0,loc1(1),loc1(0)),lat(0,loc1(1),loc1(0)),txres)<br>   draw(plot)<br>   frame(wks)<br>end<br>    </blockquote></div></div>
</div></blockquote></div></div><blockquote type="cite"><div><span>_______________________________________________</span><br><span>ncl-talk mailing list</span><br><span>List instructions, subscriber options, unsubscribe:</span><br><span><a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a></span><br></div></blockquote></div></blockquote></div><br></div>