<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">Hey Gaeun,<div class="">that is certainly possible.&nbsp;</div><div class="">If the files are not too big I don't see any problem in saving everything into one variable. Just make sure that the machine where you're running NCL has enough memory. Ideally you need to loop over the directories and over the file names, read the file, save into the variable. That's it!&nbsp;</div><div class=""><br class=""></div><div class=""><div class=""><font face="Menlo" size="1" class="">dirs=tostring(ispan(1979, 2009, 1))</font></div><div class=""><font face="Menlo" size="1" class="">fils=tostring(ispan(1,12,1))</font></div><div class=""><font face="Menlo" size="1" class=""><br class=""></font></div><div class=""><font face="Menlo" size="1" class="">nlat=100</font></div><div class=""><font face="Menlo" size="1" class="">nlon=100</font></div><div class=""><font face="Menlo" size="1" class="">ntime=dimsizes(fils)*dimsizes(dirs)</font></div><div class=""><font face="Menlo" size="1" class=""><br class=""></font></div><div class=""><font face="Menlo" size="1" class="">data=new((/ntime,nlat,nlon/), double)</font></div><div class=""><font face="Menlo" size="1" class=""><br class=""></font></div><div class=""><font face="Menlo" size="1" class="">k=0</font></div><div class=""><font face="Menlo" size="1" class="">do i=0,dimsizes(dirs)-1</font></div><div class=""><font face="Menlo" size="1" class="">&nbsp; &nbsp; do j=0,dimsizes(fils)-1</font></div><div class=""><font face="Menlo" size="1" class="">&nbsp; &nbsp; &nbsp; &nbsp; data(k,:,:)= fbindirread(dirs(i)+"/"+fils(j)+".bin", nlat*nlon, (/nlat,nlon/), "double")</font></div><div class=""><font face="Menlo" size="1" class="">&nbsp; &nbsp; &nbsp; &nbsp; k=k+1</font></div><div class=""><font face="Menlo" size="1" class="">&nbsp; &nbsp; end do&nbsp;</font></div><div class=""><font face="Menlo" size="1" class="">end do&nbsp;</font></div></div><div class=""><br class=""></div><div class="">This is just an idea, of course. I did not test this and you have to adapt it to your needs. Have a look here&nbsp;<a href="https://www.ncl.ucar.edu/Applications/r-binary.shtml" class="">https://www.ncl.ucar.edu/Applications/r-binary.shtml</a>.&nbsp;</div><div class=""><br class=""></div><div class="">Good luck</div><div class=""><div class="">
<div style="color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><br class="Apple-interchange-newline">Guido Cioni</div><div style="color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><a href="http://guidocioni.altervista" class="">http://guidocioni.altervista</a>.org</div>

</div>
<br class=""><div><blockquote type="cite" class=""><div class="">On 18 Mar 2017, at 14:35, 김가은 &lt;<a href="mailto:gaeun.kim0921@gmail.com" class="">gaeun.kim0921@gmail.com</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" class="">Dear NCL users,<div class=""><br class=""></div><div class="">I have multiple binary files stored like below:</div><div class="">directory 1979 has 12 binary files (monthly temp.)</div><div class="">directory 1980 has 12 binary files</div><div class="">...</div><div class="">directory 2009 has 12 binary files</div><div class="">--&gt; 31 directories, each contains 12 binary files</div><div class=""><br class=""></div><div class="">I want to draw a X-Y plot (time series) with those data.</div><div class="">So I was thinking that maybe I could open all of it and save each data in a variable(3d:(/371,lat,lon/))</div><div class="">But I'm not sure it is possible and I'm lost..!</div><div class="">Would you give me an idea how I should start with this?</div><div class=""><br class=""></div><div class="">Best Regards,</div><div class="">Gaeun</div></div>
_______________________________________________<br class="">ncl-talk mailing list<br class=""><a href="mailto:ncl-talk@ucar.edu" class="">ncl-talk@ucar.edu</a><br class="">List instructions, subscriber options, unsubscribe:<br class="">http://mailman.ucar.edu/mailman/listinfo/ncl-talk<br class=""></div></blockquote></div><br class=""></div></body></html>