- 积分
- 7350
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2015-7-11
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
fww@ubuntu:~$ ncl
Copyright (C) 1995-2013 - All Rights Reserved
University Corporation for Atmospheric Research
NCAR Command Language Version 6.1.2
The use of this software is governed by a License Agreement.
See http://www.ncl.ucar.edu/ for more details.
ncl 0> load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl"
ncl 1> begin
ncl 2> a=addfile("$Documents/FNL/datefiles.tar/grib/fnl_20150101_00_00_grib2","r")
ncl 3> u=a->U(0,:,:)
ncl 4> v=a->V(0,:,:)
ncl 5> wks=gsn_open_wks("ps","vector")
ncl 6> vc=gsn_vctor(wks,u,v,False)
ncl 7> end
fatal:["FileSupport.c":3106]:($Documents/FNL/datefiles.tar/grib/fnl_20150101_00_00_grib2) has no file extension, can't determine type of file to open
fatal:file (a) isn't defined
fatal:["Execute.c":8126]:Execute: Error occurred at or near line 3
ncl 8>
|
|