load "gsn_code.ncl" begin wks = gsn_open_wks("x11","example") ; Open a workstation. cirx = (/ .415, .326, .225, .159, .159, .225, .326, .415, .450/) ciry = (/ .846, .898, .880, .801, .699, .620, .602, .654, .750/) gsres = True ; Indicate you want to set some resources. gsres@gsFillColor = 4 ; Change fill color. gsn_polygon_ndc(wks,cirx,ciry,gsres) ; Draw a filled polygon. frame(wks) ; Advance the frame. end