<div dir="ltr"><div><div><div><div><div><div><div><div><div><div>Kyle is correct. You must read the documentation more carefully. The &#39;addfiles&#39; and &#39;addfile&#39; function documentation clearly state they  are for grib-1/2, netCDF-3/4, hdf-4/5. <br><br></div>If you Click on &#39;Functions&#39; ... then &#39;Category&#39; ... then &#39;File IO&#39; you will see a list of all IO related functions. Look at the &#39;binary&#39; file suite.<br><br></div>The &#39;<a href="http://www.ncl.ucar.edu/Applications/Scripts/cpcuni_1.ncl">cpcuni_1.ncl</a>&#39; example at<br><br>   <a href="http://www.ncl.ucar.edu/Applications/HiResPrc.shtml">http://www.ncl.ucar.edu/Applications/HiResPrc.shtml</a><br><br></div>contains a GrADS control file outlining the contents and structure of the file. Please look at this.<br><br></div>It is not clear to me if the data should be scaled. I did scale the data prior to plotting and writing to netCDF. Please change appropriately.<br><br>===<br></div>Really ... just minor changes to the  &#39;<a href="http://www.ncl.ucar.edu/Applications/Scripts/cpcuni_1.ncl">cpcuni_1.ncl</a>&#39; example are necessary.<br></div><div>See Attached script<br></div><div><br></div>I prefer to loop over each binary file and create a corresponding netCDF file. Then, use the &#39;ncrcat&#39; operator to concatenate all the files; then delete the intermediate daily netCDF files. This is done via the &#39;system&#39; procedure.<br><br>===<br></div>If you are new to NCL, please read the <br><br><a href="http://www.ncl.ucar.edu/Document/Manuals/">http://www.ncl.ucar.edu/Document/Manuals/</a><br><br></div>(pdf) Mini-Language Manual<br><br></div>An excellent tutorial is at:<br><br><a href="https://dl.dropboxusercontent.com/u/8357888/homepage/tutoriais/ncl/NCL_Tutorial_V1.1.pdf">DKRZ: NCL Tutorial Version 1.1</a><br></div>and<br><a href="https://dl.dropboxusercontent.com/u/8357888/homepage/tutoriais/ncl/NCL_Exercises_and_Tasks_all.pdf">DKRZ:
Examples and Exercises</a><br><div><br><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Mar 18, 2016 at 9:28 PM, Kyle Griffin <span dir="ltr">&lt;<a href="mailto:ksgriffin2@wisc.edu" target="_blank">ksgriffin2@wisc.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">I would suggest starting with the section on &quot;Reading Binary Files&quot; under File I/O examples on the NCL website.<div><br></div><div><a href="http://www.ncl.ucar.edu/Applications/r-binary.shtml" target="_blank">http://www.ncl.ucar.edu/Applications/r-binary.shtml</a><br></div><div><br></div><div>You&#39;ll see that &#39;addfiles&#39; is not the best way to read in such files, as it will be expecting certain data structures that a binary file won&#39;t have. &#39;fbindirread&#39; is the most common function I&#39;ve used, although I work with only limited binary files, none of which are from CPC. Hopefully your data source provides a bit more info on the type of binary file to help you choose the correct reading function and the correct settings for &#39;setfileoption&#39; function calls, if necessary.</div><div><br></div><div>Good luck!</div><div><br></div><div><br></div><div>Kyle</div></div><br><div class="gmail_quote"><div><div class="h5"><div dir="ltr">On Fri, Mar 18, 2016 at 5:36 PM Samar Min Allah &lt;<a href="mailto:minallah@umich.edu" target="_blank">minallah@umich.edu</a>&gt; wrote:<br></div></div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="h5"><div dir="ltr"><div class="gmail_quote"><font size="2"><span style="font-family:courier new,monospace"><span style="color:rgb(153,153,153)"></span></span></font><span style="color:rgb(7,55,99)">I am trying to convert multiple binary files (CPC_Unified precip data) to netcdf format using the following NCL script:</span><br><div dir="ltr"><div class="gmail_quote"><div dir="ltr"><div style="color:rgb(7,55,99)"><a href="https://www.ncl.ucar.edu/Applications/Scripts/cpcuni_1.ncl" target="_blank">https://www.ncl.ucar.edu/Applications/Scripts/cpcuni_1.ncl</a><br><br></div><div style="color:rgb(7,55,99)">I modified the script to read multiple files together by adding the following;<br><br>diri   = &quot;./&quot;      <br>fil   = systemfunc(&quot;cd &quot;+diri+&quot; ; ls PRCP_CU_GAUGE_V1.0GLB_0.50deg.lnx.*&quot;)<br>nfil = dimsizes(fil)<br>      <br>do nf = 0,nfil-1  <br>   fili = addfiles(diri+fil(nf),&quot;r&quot;) <br>netCDF = True                            <br>   PLOT   = False                            <br><br>   if (netCDF) then<br>       ncDir   = &quot;./&quot;                        <br>       ncFil   = fili+&quot;.nc&quot;              <br>   end if<br>.<br>.<br></div><div style="color:rgb(7,55,99)">. <i>(the remaining code is same as the script)</i><br></div><div style="color:rgb(7,55,99)">end do<br></div><div style="color:rgb(7,55,99)"><br></div><div style="color:rgb(7,55,99)">When I run the code; I get this error &quot;<i>Could not coerce values for operation</i>&quot;<br></div><div style="color:rgb(7,55,99)">Also, I believe addfiles require a file extension but when I add .bin next to the file name I get the message &quot;<i>...has no file extension, can&#39;t determine type of file to open</i>&quot;<br><br></div><div style="color:rgb(7,55,99)">I have also attached two sample files.<br><br></div><div style="color:rgb(7,55,99)">Thanks!<br></div><div style="color:rgb(7,55,99)"><br></div><div style="color:rgb(7,55,99);display:inline">​​</div><font size="2"><span style="font-family:courier new,monospace"><span style="color:rgb(153,153,153)"></span></span></font><br><div><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div><div><div><div><div><div><br></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div>
</div>
</div><br></div>
</div><br></div></div></div>
_______________________________________________<br>
ncl-talk mailing list<br>
<a href="mailto:ncl-talk@ucar.edu" target="_blank">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/mailman/listinfo/ncl-talk</a><br>
</blockquote></div>
<br>_______________________________________________<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/mailman/listinfo/ncl-talk</a><br>
<br></blockquote></div><br></div>