- 积分
- 11831
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2013-4-26
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
本人使用NCL绘制AQI,由于我选择绘制的化学要素画出来的是一片空白,听别人说是浓度很低的原因,于是我将地图的填充色设置成绿色,但是这样一设置,我发现所有的其他要素画出来的图全都变成了绿色,请问如何才能正确的设置地图的底色。以下是我的编程语言。
cnres@mpProjection = "LambertConformal"
cnres@mpLambertParallel1F = truelat1
cnres@mpLambertParallel2F = truelat2
cnres@mpLambertMeridianF = stdlon
cnres@mpLimitMode = "Corners"
cnres@mpLeftCornerLatF = xlat(0,0)
cnres@mpLeftCornerLonF = xlon(0,0)
cnres@mpRightCornerLatF = xlat(nlat-1,mlon-1)
cnres@mpRightCornerLonF = xlon(nlat-1,mlon-1)
cnres@mpFillOn = True
cnres@mpOutlineOn = False ; Use outlines from shapefile
cnres@mpDataBaseVersion = "MediumRes"
cnres@mpDataSetName = "Earth..4"
cnres@mpLandFillColor = (/0,255,0/)*1.0/255.
cnres@mpInlandWaterFillColor = (/0,255,0/)*1.0/255.
cnres@mpOceanFillColor = (/0,255,0/)*1.0/255.
cnres@mpOutlineBoundarySets = "NoBoundaries"
cnres@mpGridAndLimbOn = True
cnres@mpGridSpacingF = 1
cnres@mpGridLineDashPattern = 1
|
|