- 积分
- 692
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2011-10-19
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
我知道cnLinesOn用来选择是否显示等值线,当设置为True的时候,显示为黑线;当设置res@cnLinesOn = False的时候,显示为白色虚线。可是我想要没有线的,色块是连续的应该怎么弄呢?
脚本:
res@cnFillOn = True ; turn on contour fill
res@cnLinesOn = False ; turn off contour lines
res@cnLineLabelsOn = False ; turn off line labels
res@cnInfoLabelOn = False ; turn off info label
res@lbBoxLinesOn = False ; turn off labelbar box lines
res@lbOrientation = "Vertical"
mnmxint = nice_mnmxintvl( min(hgt), max(hgt), 18, False)
res@cnLevelSelectionMode = "ManualLevels"
res@cnMinLevelValF = 0.
res@cnMaxLevelValF = mnmxint(1)
res@cnLevelSpacingF = mnmxint(2)/8.
res@gsnAddCyclic = False
res@mpOutlineOn = True
res@mpDataBaseVersion = "MediumRes"
res@mpDataSetName = "Earth..4"
res@mpOutlineSpecifiers = "China:states"
res@mpOutlineBoundarySets = "AllBoundaries"
res@mpFillOn = True
res@mpLandFillColor = "transparent"
res@mpOceanFillColor = "lightblue"
res@mpInlandWaterFillColor = "lightblue"
res@mpFillDrawOrder = "PostDraw"
res@mpGridAndLimbOn = "True"
res@mpGridSpacingF = 10.0
res@mpGridLineDashPattern = 1
|
-
res@cnLinesOn=False
-
res@cnLinesOn=True
|