<HTML>
<HEAD>
<TITLE>BD Reader Datetimes of Images / Bio-formats</TITLE>
</HEAD>
<BODY>
<FONT FACE="Calibri, Verdana, Helvetica, Arial"><SPAN STYLE='font-size:11pt'>I noticed some code that slipped through the cracks on this reader.<BR>
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;MetadataTools.setDefaultCreationDate(store, id, i);<BR>
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;int well = i / (fieldRows * fieldCols);<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;int field = i % (fieldRows * fieldCols);<BR>
<BR>
Should instead be something like (so that each image preserves it capture time):<BR>
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;int well = i / (fieldRows * fieldCols);<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;int field = i % (fieldRows * fieldCols);<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;MetadataTools.setDefaultCreationDate(store, tiffs[well][field], i);<BR>
<BR>
But I&#8217;m having trouble debug / compiling an importer with this right now.<BR>
<BR>
Also I noticed a request for more BD Pathway files. If you have any requests, I could send a set of DVDs.<BR>
<BR>
Shawn Garbett</SPAN></FONT>
</BODY>
</HTML>