On Tue, Apr 26, 2011 at 12:28 PM, Reena Patel <span dir="ltr">&lt;<a href="mailto:reenarp@gmail.com">reenarp@gmail.com</a>&gt;</span> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Hello:<br>
<br>
I am trying to use lats4d to convert grib files to hdf format. I have<br>
a total of 99 files that need to be converted. I have attached the<br>
script I am using for conversion. Lats4d converts 31 files and exits.<br>
I restart from 32, and it converts the next 31 files. Is there a limit<br>
to the number of files it can convert at one time before restarting?<br>
<br></blockquote><div><br></div><div>You are better off using lats4d.sh in a shell script for this; see attached.</div><div><br></div><div>    Arlindo</div><div><br></div><div>PS: On linux/unix/mac os x, enter &quot;bash convert.sh&quot;</div>
<div>      On windows, enter &quot;bash convert.sh&quot;; also make sure lats4d.sh is</div><div>      on your path.</div><div><br></div><div>---</div><div><div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">#!/bin/bash</font></div>
<div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace"># Converts 99 files to hdf4 using lats4d.sh.</font></div><div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">maxcount=99</font></div>
<div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">count=1</font></div><div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">while [ $count -le $maxcount ]; do</font></div><div>
<font class="Apple-style-span" face="&#39;courier new&#39;, monospace">   printf -v cmd &quot;lats4d.sh -i test%02d.ctl -format hdf4 -o hdf/test%02d&quot; $count $count</font></div><div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">   $cmd</font></div>
<div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">   count=$[$count+1]</font></div><div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">done</font></div></div><div><br></div>
</div>-- <div>Arlindo da Silva</div><div><a href="mailto:dasilva@alum.mit.edu">dasilva@alum.mit.edu</a><br>
</div>