<div dir="ltr"><div>Did you look at NCL IO examples:<br>   <a href="https://www.ncl.ucar.edu/Applications/read_ascii.shtml">https://www.ncl.ucar.edu/Applications/read_ascii.shtml</a><br></div><div>We create these pages for users to look at.<br><br>===<br></div><div><br></div><div>There is nothing &#39;special&#39; about these ascii/text files.<br><br></div>After unzipping, these are simple files<br><br>2016 01 01 00    52   -36 10120   230    30 -9999 -9999 -9999<br>2016 01 01 01    45   -40 10122    90    30 -9999 -9999 -9999<br><div>[snip]<br></div><div>         ncol    = 12<br></div><div><pre>    dasc = &quot;./&quot;         ; input directory for ascii files
    fid  = &quot;<a class="gmail-file" href="ftp://ftp.ncdc.noaa.gov/pub/data/noaa/isd-lite/2016/013470-99999-2016.gz">*2016</a>&quot;      ; a unique identifier for files
    fasc = systemfunc (&quot;cd &quot;+ dasc+&quot; ; ls &quot;+fid)<br>    pasc = dasc+fasc<br></pre><pre>    nfil = dimsizes(fasc)<br></pre><pre>    do nf=0,nfil-1<br></pre><pre> ; You can now read the file via &quot;asciiread&quot;.
       nrows = <a href="https://www.ncl.ucar.edu/Document/Functions/Contributed/numAsciiRow.shtml"><strong>numAsciiRow</strong></a>(pasc(nf))   ; contributed.ncl
       data := <a href="https://www.ncl.ucar.edu/Document/Functions/Built-in/asciiread.shtml"><strong>asciiread</strong></a>(pasc,(/nrows,ncols/),&quot;float&quot;)
       data@_FillValue = -9999.0<br></pre><pre>       yyyy := toint( data(:,0) )<br><br></pre><pre>etc<br></pre><pre>    end do<br><br>===<br></pre><pre>Please read the section:<br><br><b>How to read multiple ASCII files into one variable in NCL</b>.<br><br></pre><pre>Good luck<br></pre></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Jul 10, 2017 at 6:28 PM, Soumik Basu <span dir="ltr">&lt;<a href="mailto:sbasu@alaska.edu" target="_blank">sbasu@alaska.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div><div><div>Hi,<br><br></div>I am wondering if there is any example in NCL showing how to read noaa isd-lite dataset and link the data to the list of stations. <br><br><a href="ftp://ftp.ncdc.noaa.gov/pub/data/noaa/isd-lite/" target="_blank">ftp://ftp.ncdc.noaa.gov/pub/<wbr>data/noaa/isd-lite/</a><br><br></div>Thank you in advance for any help. <br><br></div>Thanks,<br></div>Soumik<br clear="all"><div><div><div><div><div><div><br>-- <br><div class="m_-2753386862720728094gmail_signature"><div dir="ltr"><div><div>-- </div><div>&quot;Learn from yesterday, live for today, hope for tomorrow. The important thing is not to stop questioning.&quot; - Albert Einstein</div><div><br></div><div>******************************<wbr>******************************<wbr>******************************<wbr>********</div><div>Dr. Soumik Basu</div><div>Post Doctoral Fellow, International Arctic Research Center, UAF, Fairbanks, AK, USA</div><div>Nanjing University of Information Science and Technology, Nanjing, China</div><div>PhD in Atmospheric Sciences</div><div>M.Sc. in Atmospheric Sciences</div><div>Email: <a href="mailto:suvro05@gmail.com" target="_blank">suvro05@gmail.com</a></div><div>website: <a href="http://soumikbasu.weebly.com/" target="_blank">http://soumikbasu.weebly.com/</a></div><div><br></div><div>******************************<wbr>******************************<wbr>******************************<wbr>*********</div></div></div></div>
</div></div></div></div></div></div></div>
<br>______________________________<wbr>_________________<br>
ncl-talk mailing list<br>
<a href="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</a><br>
List instructions, subscriber options, unsubscribe:<br>
<a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">http://mailman.ucar.edu/<wbr>mailman/listinfo/ncl-talk</a><br>
<br></blockquote></div><br></div>