<div dir="ltr"><div class="gmail_default" style="font-size:small"><span style="font-size:12.8000001907349px">Mariama,</span></div><div class="gmail_default" style="font-size:small"><span style="font-size:12.8000001907349px"><br></span></div><div class="gmail_default" style="font-size:small"><span style="font-size:12.8000001907349px">In the future, please post NCL questions to ncl-talk, and not ncl-install:</span></div><div class="gmail_default" style="font-size:small"><span style="font-size:12.8000001907349px"><br></span></div><div class="gmail_default"><span style="font-size:12.8000001907349px"><a href="http://www.ncl.ucar.edu/Support/email_lists.shtml" target="_blank">http://www.ncl.ucar.edu/Support/email_lists.shtml</a></span><br></div><div class="gmail_default" style="font-size:small"><span style="font-size:12.8000001907349px"><br></span></div><div class="gmail_default"><span style="font-size:12.8000001907349px">Without knowing anything about your data, it&#39;s almost impossible to tell you how to fix your code so you can correctly &quot;gather&quot; all the data. We need to know what structure the data is on each file.</span></div><div class="gmail_default"><span style="font-size:12.8000001907349px"><br></span></div><div class="gmail_default"><span style="font-size:12.8000001907349px">Depending on your data, you might be able to use &quot;addfiles&quot; instead of &quot;addfile&quot;, as it allows you to read in a series of files with a single call.You can then read data off all the files in either &quot;join&quot; or &quot;cat&quot; mode.  See examples 1 and 2 on the &quot;addfiles&quot; function page:</span></div><div class="gmail_default"><span style="font-size:12.8000001907349px"><br></span></div><div class="gmail_default"><span style="font-size:12.8000001907349px"><a href="http://www.ncl.ucar.edu/Document/Functions/Built-in/addfiles.shtml" target="_blank">http://www.ncl.ucar.edu/Document/Functions/Built-in/addfiles.shtml</a></span><br></div><div class="gmail_default"><span style="font-size:12.8000001907349px"><br></span></div><div class="gmail_default"><span style="font-size:12.8000001907349px">Your code might look something like this:</span></div><div class="gmail_default"><span style="font-size:12.8000001907349px"><br></span></div><div class="gmail_default"><span style="font-size:12.8000001907349px"><font face="monospace, monospace">  files_0 = addfiles(names,&quot;r&quot;)    ; Open all the HDF5 files in one call.</font></span></div><div class="gmail_default"><span style="font-size:12.8000001907349px"><font face="monospace, monospace">  longs = files_0[:]-&gt;retrieval_longitude   ; Read retrieval_longitude across all files</font></span></div><div class="gmail_default"><div class="gmail_default"><span style="font-size:12.8000001907349px"><font face="monospace, monospace">  lats  = files_0[:]-&gt;retrieval_latitude    ; ...</font></span></div><div class="gmail_default"><span style="font-size:12.8000001907349px"><font face="monospace, monospace">  data  = files_0[:]-&gt;xco2</font></span></div></div><div class="gmail_default"><br></div><div class="gmail_default"><span style="font-size:12.8000001907349px"><br></span></div><div class="gmail_default"><span style="font-size:12.8000001907349px">Also, you don&#39;t need to redirect your &quot;find&quot; output to an ASCII file, and then read in that ASCII file to get the list of names. You should be able to do something like this:</span></div><div class="gmail_default"><span style="font-size:12.8000001907349px"><br></span></div><div class="gmail_default"><span style="font-size:12.8000001907349px"><font face="monospace, monospace">function get_file_names()</font></span></div><div class="gmail_default"><span style="font-size:12.8000001907349px"><font face="monospace, monospace">begin</font></span></div><div class="gmail_default"><span style="font-size:12.8000001907349px"><font face="monospace, monospace">  names = systemfunc(&quot;find /home/Bama4/OCO2_DATA/ -name &#39;*.h5&#39; -print&#39;)</font></span></div><div class="gmail_default"><span style="font-size:12.8000001907349px"><font face="monospace, monospace">  return names</font></span></div><div class="gmail_default"><span style="font-size:12.8000001907349px"><font face="monospace, monospace">end</font></span></div><div class="gmail_default"><span style="font-size:12.8000001907349px"><br></span></div><div class="gmail_default"><span style="font-size:12.8000001907349px">Please look at your data files carefully, and determine whether &quot;addfiles&quot; might work for you. If you continue to have questions, post them to ncl-talk, but include more information about the structure of your data.  You can either use &quot;ncl_filedump&quot; to look at single files from the UNIX command line:</span></div><div class="gmail_default"><span style="font-size:12.8000001907349px"><br></span></div><div class="gmail_default"><span style="font-size:12.8000001907349px"><font face="monospace, monospace">    ncl_filedump xxxxx.h5</font></span></div><div class="gmail_default"><span style="font-size:12.8000001907349px"><br></span></div><div class="gmail_default"><span style="font-size:12.8000001907349px">or &quot;printVarSummary&quot; to examine the contents of a variable after you read it off a file:</span></div><div class="gmail_default"><span style="font-size:12.8000001907349px"><br></span></div><div class="gmail_default"><div class="gmail_default"><span style="font-size:12.8000001907349px"><font face="monospace, monospace">   data = files_0-&gt;xco2</font></span></div><div class="gmail_default"><span style="font-size:12.8000001907349px"><font face="monospace, monospace">   printVarSummary(data)</font></span></div><div><span style="font-size:12.8000001907349px"><font face="arial, helvetica, sans-serif"><br></font></span></div><div><span style="font-size:12.8000001907349px"><font face="arial, helvetica, sans-serif">--Mary</font></span></div><div><span style="font-size:12.8000001907349px"><font face="monospace, monospace"><br></font></span></div><div class="gmail_default"></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Sat, Aug 22, 2015 at 5:09 PM, Mariama Barr - Dallas <span dir="ltr">&lt;<a href="mailto:bama4@umbc.edu" target="_blank">bama4@umbc.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">The following code is giving me problems, Im trying to gather all of the data into three arrays: longs, lats, and data. It  keeps saying that the arrays are not the same dimension when I try array_append_record, and when I try copy_MetaVar for the arrays it just gives me an empty array. Is there an easier way to gather up all of the latitudes, longitudes, and data from each file into three arrays so I can in the future display it  on one map?<div><img src="cid:ii_idnoh57n0_14f57ac343510480" width="392" height="454"><br>​<span class="HOEnZb"><font color="#888888"><br clear="all"><div><br></div>-- <br><div><div dir="ltr"><div>Mariama Barr-Dallas</div>
<div>Meyerhoff Scholar/ NSA Scholar M23<br>Computer Science Major, History Major</div>
<div>University of Maryland Baltimore County<br>Class of 2015</div></div></div>
</font></span></div></div>
<br>_______________________________________________<br>
ncl-install mailing list<br>
List instructions, subscriber options, unsubscribe:<br>
<a href="http://mailman.ucar.edu/mailman/listinfo/ncl-install" rel="noreferrer" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncl-install</a><br>
<br></blockquote></div><br></div>