load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl" begin clat = new(100,float) ; Create arrays to hold circle. clon = new(100,float) wks = gsn_open_wks("x11","nggcog") ; Open X11 workstation. nggcog(40.,-105.3,7.0,clat,clon) ; Set up some map resources. mpres = True mpres@gsnMaximize = True ; Maximize size of plot in frame. mpres@gsnFrame = False ; Don't advance the frame. mpres@mpCenterLonF = -95. mpres@mpCenterLatF = 35. map = gsn_map(wks, "Orthographic", mpres) lnres = True lnres@gsLineColor = "Brown" lnres@gsLineThicknessF = 3.0 gsn_polyline(wks, map, clon, clat, lnres) frame(wks) end