[ncl-talk] Skew-T
Dennis Shea
shea at ucar.edu
Mon Aug 25 08:48:44 MDT 2014
You have an older version of NCL.
This example uses new NCL syntax called the 'reassignment operator'
introduced in February 1013. The reassignment operator is mentioned at:
http://www.ncl.ucar.edu/prev_releases.shtml#6.1.1
idnum := f->wmoStaNum
To get your current version of NCL working,
Replace
idnum := f->wmoStaNum
synTime := f->synTime
etc
With
idnum = f->wmoStaNum
synTime = f->synTime
Then before the 'end do'
delete(idnum)
delete(synTime)
Really, since there are multiple := you could use the following before the
'end do'
to delete multiple variables in one line.
delete( [/ idnum, synTime, ymdh, .... /] )
===========
FYI: There will be a new release of NCL [6.2.1] in the next 10days or so.
When that becomes available, I'd suggest updating to the latest release.
http://www.ncl.ucar.edu/future_release.shtml
Good luck
On Mon, Aug 25, 2014 at 7:18 AM, <jorge.conrado at cptec.inpe.br> wrote:
>
>
>
> Hi,
>
>
> I downloaded the skewt_8.ncl and I did: ncl skewt_8.ncl and I
> had the messages:
>
>
> fatal:syntax error: line 48 in file skewt_8.ncl before or near :
> idnum :
> -------------^
>
> fatal:error in statement
> fatal:syntax error: line 49 in file skewt_8.ncl before or near :
> synTime :
> -------------^
>
> fatal:error in statement
> fatal:syntax error: line 51 in file skewt_8.ncl before or near :
> ymdh :
> -------------^
>
> fatal:error in statement
> fatal:syntax error: line 55 in file skewt_8.ncl before or near :
> ii :
> --------------^
>
> fatal:error in statement
> fatal:syntax error: line 112 in file skewt_8.ncl before or near ; "w"
> => create or overwrite
>
> write_table(txtPath, "w", varHead, "%s") ; "w" => create
> or overwrite
> ^
>
> fatal:syntax error: possibly an undefined procedure
> fatal:syntax error: line 113 in file skewt_8.ncl before or near ; "a"
> => append
>
> write_table(txtPath, "a", untHead, "%s") ; "a" => append
> ^
>
> fatal:syntax error: possibly an undefined procedure
> fatal:syntax error: line 114 in file skewt_8.ncl before or near \n
> write_table(txtPath, "a", varList,
> "%7.0f%7.0f%7.1f%7.1f%7.1f%7.0f")
>
> ------------------------------------------------------------------------------^
>
> fatal:syntax error: possibly an undefined procedure
> fatal:Syntax Error in block, block not executed
> fatal:error at line 121 in file skewt_8.ncl
>
>
>
>
> What can I do to solve this.
>
>
> Conrado
>
> _______________________________________________
> ncl-talk mailing list
> List instructions, subscriber options, unsubscribe:
> http://mailman.ucar.edu/mailman/listinfo/ncl-talk
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mailman.ucar.edu/pipermail/ncl-talk/attachments/20140825/4c823481/attachment.html
More information about the ncl-talk
mailing list