load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl" begin wks = gsn_open_wks("ps","polymarker_triangle") ; Open a workstation. markx = (/ .415, .326, .225, .159, .159, .225, .326, .415, .450/) marky = (/ .846, .898, .880, .801, .699, .620, .602, .654, .750/) gsres = True ; Indicate you want to set some resources. gsres@gsMarkerColor = 3 ; Change marker color. gsres@gsMarkerSizeF = 10. ; Increase marker size by a factor of 10. mstring = "u" fontnum = 34 xoffset = 0.0 yoffset = 0.0 ratio = 1.0 size = 3.0 angle = 270.0 new_index = NhlNewMarker(wks, mstring, fontnum, xoffset, yoffset, ratio, size, angle) gsres@gsMarkerIndex = new_index gsn_polymarker_ndc(wks,markx,marky,gsres) ; Draw the polymarkers. frame(wks) ; Advance the frame. end