- 积分
- 388
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2018-8-8
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
本帖最后由 hywzq 于 2019-10-7 19:11 编辑
我想画成这样
我想画成这个
实际却画成了这样
但是却画成了这样,怎么才能只把外轮廓显示出来,轮廓里面不显示呢?
下面是脚本
res = True
res@mpGridLatSpacingF = 20 ; spacing for lat lines
res@mpGridLonSpacingF = 10 ; spacing for lon lines
res@cnFillOn = True ; color plot desired
res@gsnDraw = False ; Do not draw plot
res@gsnFrame = False ; Do not advance frame
res@cnLevelSelectionMode = "ManualLevels" ; set manual contour levels
res@cnMinLevelValF = 1 ; set min contour level
res@cnMaxLevelValF = 10 ; set max contour level
;res@cnLevelSpacingF = 50 ; set contour spacing
res@lbLabelFontHeightF = 0.015 ; label bar font height
res@vpXF = 0.1 ; 左边距
res@vpYF = 0.95 ; 上边距
res@vpWidthF = 0.8 ; 图片的宽度
res@vpHeightF = 0.64
res@cnLinesOn = False ; turn of contour lines
;res@cnLevels = 2
res@mpFillOn = True
res@mpMaxLatF = 90
res@mpMinLatF = -90
res@mpMaxLonF = 360
res@mpMinLonF = 0
res@mpCenterLonF = 0
res@mpAreaMaskingOn = True
res@mpOutlineSpecifiers = (/"China"/)
res@mpLandFillColor = "white"
res@mpInlandWaterFillColor = "white"
res@mpOceanFillColor = "white"
res@tiMainFontHeightF = .018
res@gsnLeftStringFontHeightF = 0.02
res@gsnRightStringFontHeightF = 0.02
res@cnInfoLabelOn = False
res@cnLineThicknessF = 1
res@pmLabelBarWidthF = 0.65
res@pmLabelBarHeightF = 0.11
res@pmLabelBarOrthogonalPosF = 0.1
res@tmXBMinorOutwardLengthF = 0.0015
res@tmYLMinorOutwardLengthF = 0.0015
res@tmYLMajorOutwardLengthF = 0.0015
res@lbOrientation = "horizontal"
res@cnFillMode = "RasterFill"
|
|