- 积分
- 105
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2011-12-16
- 最后登录
- 1970-1-1
|
GrADS
系统平台: |
|
问题截图: |
|
问题概况: |
为什么会出来两个图?或者是很多个? |
我看过提问的智慧: |
看过 |
自己思考时长(天): |
3 |
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
程序再简单不过了啊,每次出来都是两个文件,blt.00000001 和 blt.0000002
wks = gsn_open_wks("png","blt_"+fy+ff)
gsn_define_colormap(wks,"BlAqGrYeOrReVi200")
resCN = True ; plot mods desired
resCN@tiMainString ="blt_"+fy+ff ; title
resCN@cnFillOn = True ; turn on color
resCN@gsnAddCyclic =False
resCN@lbLabelAutoStride= True
resCN@cnLevelSelectionMode = "ManualLevels"
resCN@cnLevelSpacingF=1
resCN@cnMinLevelValF=0
resCN@cnMaxLevelValF=10
resCN@mpMinLonF =105
resCN@mpMaxLonF =125
resCN@mpMinLatF =7.5
resCN@mpMaxLatF =22
resCN@mpCenterLonF =120
plot = gsn_csm_contour_map(wks,BLT,resCN)
draw(plot)
frame(wks)
|
|