Oops, I forgot to include:<br><br>driver = GetDriverByName(format)<br><br>I went ahead and rewrote the line you suggested, same problems though.&nbsp; <br><br>Thanks,<br><br>Jamie<br><br><div class="gmail_quote">On Mon, Jun 9, 2008 at 12:34 PM, Frank Warmerdam &lt;<a href="mailto:warmerdam@pobox.com">warmerdam@pobox.com</a>&gt; wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="Ih2E3d"><br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
 &nbsp;format = &quot;GTiff&quot;<br>
 &nbsp;outdataset.driver.Create(outfile, inband.XSize, inband.YSize, 1, gdal.GDT_Float32)<br>
 &nbsp;outband = outdataset.GetRasterBand(1)<br>
</blockquote>
<br></div>
Jamie,<br>
<br>
I&#39;m very suspicious about the above, and I *suspect* it is orphaning<br>
the new dataset objects created with the Create() call which might<br>
be responsible for your resource leak.<br>
<br>
I would suggest:<br>
<br>
 &nbsp;format = &quot;GTiff&quot;<br>
 &nbsp;outdataset = gdal.GetDriverByName(format).Create(....)<br>
<br>
Good luck,<br><font color="#888888">
-- <br>
---------------------------------------+--------------------------------------<br>
I set the clouds in motion - turn up &nbsp; | Frank Warmerdam, <a href="mailto:warmerdam@pobox.com" target="_blank">warmerdam@pobox.com</a><br>
light and sound - activate the windows | <a href="http://pobox.com/%7Ewarmerdam" target="_blank">http://pobox.com/~warmerdam</a><br>
and watch the world go round - Rush &nbsp; &nbsp;| President OSGeo, <a href="http://osgeo.org" target="_blank">http://osgeo.org</a><br>
<br>
</font></blockquote></div><br>