tlnline1 = gsn_add_polygon(wks, map, boxlon, boxlat, gonres) ;---Add an line and "比例尺" to large map lnres = True lnres@gsLineColor = "black" lnres@gsLineThicknessF = 10.0 lnres@gsLineDashPattern = 0 lnline1 = gsn_add_polyline(wks, map, (/78,83/), (/20,20/), l...
4区的坐标位置 lonx = (/190, 190,240, 240, 190/) ; dum1 = gsn_add_polyline(wks, base(0),lonx,latx,plres) dum2 = gsn_add_polygon(wks,base(0),lonx,latx,gres) res@gsnCenterString = "h300&V850" resc@cnLevelSelectionMode = "AutomaticLevels" resc@cnLevelSpacingF = 15. base(...
29-29 19-19 0 gsn_*()与相应的gsn_*_ndc()区别在于:gsn_*()使用像素定位像元的绝对位置,而gsn_*_ndc()使用0~1的比例定位像元在页面中的相对位置。 gsn_*()与相应的gsn_add_*()区别在于∶gsn_*()是过程,而gsn_add_*()是函数。 gsn_csm_*_map在地图上绘制,gsn_csm_*_map_ce()采用圆柱等距...
load $NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl load $NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl begin in = addfile( “myfile.nc, “r “) t = in-T wks = gsn_open_wks( “ps,ce) gsn_define_colormap(wks,BlAqGrYeOrRe) res = True res@cnFillOn = True res@cnLines...
(gsn_polygon), page/NDC (gsn_polygon_ndc) 没有使得多边形成为图形一部分的程序,这就意味着,如果图形是面板形式,多边形不会和图形一起存在。如果想要镶板,要用 。 gsn_add_polygon 下面的代码段用来说明如何在图像上绘制或添加多边形: ; plot created above with gsnFrame and gsnDraw set to false. ; add...
多边形可以添加到一个图形上,在图形坐标中用 gsn_ploygon命令,在NDC坐标中用gsn_polygon_ndc命令。这两个命令都不会使多边形添加为图形的一部分(它会在’另一页’上显示)。如果你要他们在一个图形上显示,需要’ ) 使用gsn_add_polygon命令。例:wks = gsn_open_wks(ps,5) ; open a ps file res = True...
如果你要他们在一个图形上显示,需要’ ) 使用gsn_add_polygon命令。例: wks = gsn_open_wks(\False plot = gsn_csm_map_ce(wks,res) y = (/30.,30.,0.0,0.,30./) x = (/-90.,-45.,-45.,-90.,-90./) resp = True resp@gsFillColor = \gsn_polygon(wks,plot,x,y,resp) d = ...
NCL绘图示例台风路径及风圈图-大气科学学报 NCL绘图⽰例台风路径及风圈图-⼤⽓科学学报 res@gsnFrame = False res@gsnDraw = False ; don't draw plot yet res@mpMinLatF = 5 ; zoom in on a subregion res@mpMaxLatF = 35 res@mpMinLonF = 110 res@mpMaxLonF = 150 ...
NCL绘图示例台风路径及风圈图-大气科学学报
polyres@gsLineColor="black"shpname="/data/DATA/shp/bou2_4l.shp"poly=gsn_add_shapefile_polylines(wks,mp,shpname,polyres)draw(mp) 注: mp为原始代码中设定的。 只能使用polyline的shp数据,如果是polygon的shp数据会自动颜色填充,如果设置填充颜色为不透明,就看不到d01 d02这些方框了,如果设置为透明就会...