登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
各位大神,小弟用官网的一个ncl脚本实验,可结果出错。该如何改啊???!
脚本如下:
Exampleload "$NCARG_ROOT/lib/ncarg/nclscripts/contrib/NCL_GETools.ncl" begin fid=addfile("../ExampleData/ds601.0_RCPP/olr_RCPP_2002_12.nc","r") nFrames=20; olr=fid->OLR(0:nFrames,:,:) lat=fid->XLAT lon=fid->XLONG TimeTag=tostring(fid->Times(0:nFrames,:)) Opt=True Opt@Verbose=True Opt@ColorMap="WhiteBlue" Opt@DataSetTitle="Outgoing Longwave Radiation" Opt@MinData=100.0 Opt@MaxData=250.0 Opt@MinDataOpacity=100 Opt@MaxDataOpacity=0 Opt@IncludeGrid=True ; The following command will create a KML file, called olr12.kml, ; in the current directory, since the first argument, i.e. ; the PATH, is set to "." RasterTimeSeries2KML("olr_200212_21F_VarAlpha",olr,lon,lat,TimeTag,Opt) end 运行之后提示,第6行出错,于是把XLAT改为lat,第7行改为lon。 再次运行,这两行错误没了。可提示在24行出错,自己研究两天,不知道哪儿出错了。 还望各位大神指点。在此谢过了
|