- 积分
- 37
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2015-6-2
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
; Example script - plot terrain (using only basic NCL functions); Note no map background info is available; November 2008load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl"begin a = addfile("./geo_em.d01.nc","r") ; Open a file type = "x11"; type = "pdf"; type = "ps"; type = "ncgm" wks = gsn_open_wks(type,"plt_geo_1") ; Create a plot workstation ter = a->HGT_M(0,:,:) ; Read the variable to memory plot = gsn_contour(wks,ter,True) ; Create plot end |
|