- 积分
- 16
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2012-6-5
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
用NCL画好等值线图,怎样再标出某点位置?程序大致过程如下:
load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl"
load "$NCARG_ROOT/lib/ncarg/nclscripts/wrf/WRFUserARW.ncl"
begin
wks = gsn_open_wks(type,"plt")
contour_rh = wrf_contour(a,wks,...................)
contour_t = wrf_contour(a,wks,...................)
plot = wrf_map_overlays(a, wks, contour_rh,contour_t, pltres, mpres)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
gsn_polymarker(wks,plot,116,40,res)
gsn_add_polymarker(wks,plot,116,40,res)
frame(wks)
这两个都不行的,没有在等压线图中加点,而是重新画了个图,标了位置点。。。
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
end
我该怎样解决,望不吝赐教,身边没有了解这些的人!
|
|