<div dir="ltr"><div>I am trying to add gsn_add_txt and polymarks in panel plot of 12 figures with 1st figure will show locations and index of stations but in the final figure I am getting the circles but not texts in the figure itself. <br></div><div>Following is part of the code where I am setting up my ncl code to add polyres and txts. Any help on this would be appreciated.<br></div><div><br></div><div>res      = True               ; plot options desired<br>  res@gsnAddCyclic = False<br>  res@gsnMajorLatSpacing = 10             ; change maj lat tm spacing<br>  res@gsnMajorLonSpacing = 20            <br></div><div>SNIP........<br></div><div>mkres = True<br>    mkres@gsMarkerIndex = 17     ; Filled circle<br>    mkres@gsMarkerSizeF = 0.02<br><br>     latd = (/24.7,26.73, 49.09,38.43/)<br>    lond = (/-26.95,-22.93,-38.02, -36.24/)<br>    <br>         polyres               = True          ; poly marker mods desired<br>     polyres@gsMarkerIndex = 17            ; choose circle as polymarker<br>     polyres@gsMarkerSizeF = 0.01           ; select size to avoid streaking<br>     polyres@gsMarkerColor = (/"red"/)   ; choose color<br><br>        txres = True<br>        txres@txFont        = 19           ; Change the default font.<br>        txres@txFontHeightF = 0.008         ; Set the font height.<br>        txres@txJust        = "TopLeft"<br>        txres@txFontColor   = "Black"<br>;;         txres@txFont = "helvetica-bold"<br>       txres@txFuncCode    = "~"<br>           strs = (/"1","2","3","4"/)<br><br>          res@gsnCenterString   = labes(0)<br>        plot_A(0) = gsn_csm_contour_map_ce (wks, msd1(:,:), res)<br>        dum1=gsn_add_polymarker(wks,plot_A(0),lond,latd,mkres)<br>        dum2=gsn_add_text(wks,plot_A(0),strs(0),-28,23,txres)<br>        dum3=gsn_add_text(wks,plot_A(0),strs(1),-23,27,txres)<br>        dum4=gsn_add_text(wks,plot_A(0),strs(2),-38,50,txres)<br>        dum5=gsn_add_text(wks,plot_A(0),strs(3),-36,40,txres)<br>        res@gsnCenterString   = labes(1)<br>        plot_A(1) = gsn_csm_contour_map_ce (wks, msd2(:,:), res)</div><div>SNIP.......<br> gsn_panel(wks,plot_A,(/3,4/),pres1)<br><br>;        draw(plot_A)<br>        frame(wks)</div><div><br></div><div>Thanks</div><div>Debasish<br></div><div><br></div></div>