| 
 
	积分541贡献 精华在线时间 小时注册时间2015-10-19最后登录1970-1-1 
 | 
 
| 
本帖最后由 weety9394 于 2017-11-30 23:33 编辑
x
登录后查看更多精彩内容~您需要 登录 才可以下载或查看,没有帐号?立即注册 
  
 不知道这段语句哪条命令画不出来
 res                            = True
 res@gsnMaximize                = True
 res@gsnDraw                    = False
 res@gsnFrame                   = False
 res@gsnLeftString              = "OBS"
 res@gsnRightString             = "Total"
 res@tmXTOn                     = False
 res@tmYROn                     = False
 
 ;---------------------------------------------------------------
 ; set for the map
 mpres                            = res
 mpres@mpMinLatF                  = 17.
 mpres@mpMaxLatF                  = 55.
 mpres@mpMinLonF                  = 72.
 mpres@mpMaxLonF                  = 136.
 
 mpres@tmXBMode                   = "Explicit"                ; 指定底边坐标轴的标签
 mpres@tmXBValues                 = (/70,80,90,100,110,120,130,140/)
 mpres@tmXBLabels                 =(/"70E","80E","90E","100E","110E","120E","130E","140E"/)
 mpres@tmYLMode                   = "Explicit"                ; 指定左边坐标轴的标签
 mpres@tmYLValues                 = (/20,30,40,50/)
 mpres@tmYLLabels                 = (/"20N","30N","40N","50N"/)
 mpres@tmLabelAutoStride          = True                      ; nice stride on labels
 
 mpres@mpGeophysicalLineThicknessF = 4  ;地形线粗细
 
 mpres@mpFillOn                   = True
 mpres@mpDataSetName              = "/lustre/home/niehw/NCL-Chinamap/database/Earth..4"
 mpres@mpDataBaseVersion          = "MediumRes" ; or "Ncarg4_1"
 mpres@mpAreaMaskingOn            = True
 mpres@mpMaskAreaSpecifiers       = (/"China"/)
 mpres@mpOutlineSpecifiers        = (/"China","China:Provinces"/)
 
 mpres@mpLandFillColor            = "white"
 mpres@mpInlandWaterFillColor     = "white"
 mpres@mpOceanFillColor           = "white"
 mpres@mpOutlineBoundarySets      = "NoBoundaries"
 mpres@mpNationalLineColor        = "black"
 mpres@mpProvincialLineColor      = "black"
 mpres@mpGeophysicalLineColor     = "black"
 mpres@mpNationalLineThicknessF   = 2
 mpres@mpProvincialLineThicknessF = 1
 
 map = gsn_csm_map(wks,mpres)
 
 
 | 
 |