Hi Dave,<div><br></div><div>Would you mind checking if BinnedProfile2D._data['zfield'][512,:] and [:,512] has non-zero values for your data?  I just checked with one of mine and it seems to be zeros.  Looking at the source in yt/data_objects/profiles.py, I think this is just a bug of creating the fields one too large.</div>

<div><br></div><div>    def _get_empty_field(self):</div><div>        return na.zeros((self[self.x_bin_field].size,</div><div>                         self[self.y_bin_field].size), dtype='float64')</div><div><br>
</div>
<div>and it should be:</div><div><br></div><div><div>    def _get_empty_field(self):</div><div>        return na.zeros((self[self.x_bin_field].size-1,</div><div>                         self[self.y_bin_field].size-1), dtype='float64')</div>

</div><div> </div><div>since the x_bin_field has the end values.  That said I believe <span class="Apple-style-span" style="border-collapse: collapse; font-family: arial, sans-serif; font-size: 13px; ">Xbins[I] < Xvalue <</span></div>

<meta charset="utf-8"><span class="Apple-style-span" style="border-collapse: collapse; font-family: arial, sans-serif; font-size: 13px; ">Xbins[I+1] is correct, and until we verify and get rid of the last bin in the zfield you can just ignore it.</span><div>

<font class="Apple-style-span" face="arial, sans-serif"><span class="Apple-style-span" style="border-collapse: collapse;"><br></span></font></div><div><font class="Apple-style-span" face="arial, sans-serif"><span class="Apple-style-span" style="border-collapse: collapse;">Sam<br>

</span></font><div><br></div><div><br><div class="gmail_quote">On Thu, Jul 7, 2011 at 11:25 AM, david collins <span dir="ltr"><<a href="mailto:antpuncher@gmail.com">antpuncher@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

Hi --<br>
<br>
I have a dumb question about the contents of the _data member of a<br>
BinnedProfile2D.  I feel like I may have asked this question before,<br>
but I didn't see it in my archive, sorry if this is a dumb one.<br>
<br>
Why is the size of the Z array the same as Xbins \cross Ybins?  For<br>
instance, I asked for 512 bins in both X and Y between X1,X2 and<br>
Y1,Y2.  This gives me 513 bins in the Xbins array, as I expect (same<br>
for Y).  But the Z array is also 513x513.  My assumption has been that<br>
in Zarrray[I,J] is the value of Zvalue with Xbins[I] < Xvalue <<br>
Xbins[I+1], but that should give me 512 bins for the Z array.  What's<br>
the extra bin for?<br>
<br>
Thanks,<br>
d.<br>
<font color="#888888"><br>
--<br>
Sent from my computer.<br>
_______________________________________________<br>
yt-users mailing list<br>
<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a><br>
<a href="http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org" target="_blank">http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org</a><br>
</font></blockquote></div><br></div></div>