- 积分
 - 385
 
	- 贡献
 -  
 
	- 精华
 
	- 在线时间
 -  小时
 
	- 注册时间
 - 2020-4-29
 
	- 最后登录
 - 1970-1-1
 
 
 
 
 
 
 | 
	
 
NCL
| 系统平台: | 
ncl绘图时不出现底图怎么办  | 
 
| 问题截图: | 
   | 
 
| 问题概况: | 
ncl绘图时不出现底图怎么办  | 
 
| 我看过提问的智慧: | 
看过  | 
 
| 自己思考时长(天): | 
2  | 
 
 
 
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册 
 
 
 
x
 
我输入的代码 
 
begin 
  f = addfile("uv300.nc","r") 
  u    = f->U(0,:,:)    ; read in example data [2D only here] 
  v    = f->V(0,:,:) 
 
;---Create plots 
  wks  = gsn_open_wks("x11","stream")               ; send graphics to PNG file 
 
  res                    = True                     ; plot mods desired 
  res@tiMainString       = "Streamlines"            ; title 
 
  res@stArrowLengthF     = 0.004                    ; size of the arrows. 
  res@stMinArrowSpacingF = 0.004                    ; arrow spacing. 
  res@stArrowStride      = 3                        ; arrows start every third 
 
  plot = gsn_csm_streamline_map_ce(wks,u,v,res) 
end 
~         
感觉没啥毛病,为啥画出来就没背景呢?求大佬解答,我都要被它愁死了        
 
 |   
 
 
 
 |