; ; Color table exercise 5. ; load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl" load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl" begin wks = gsn_open_wks("x11","color_ex05") cmap = (/"white", "coral", "cornflowerblue", "orange", "DarkOrchid", \ "SeaGreen", "RosyBrown", "black", "yellow", "gray51"/) gsn_define_colormap(wks,cmap) ; Define color map using named colors gsn_draw_colormap(wks) ; Draw the current color map end