hey chris & nga,
> > Or is 'filename' the only part of this rss data?
> Bingo.
ah, ok. I see
> I agree that the capacity is not needed and data.length is sufficient to
> represent the capacity of the node. If the node is full, based on the quad
> tree insertion algorithm, the node should be split and data should be
> redistributed accordingly.
>
> Best,
> Nga
But then one needs to be carefull with null values and exporting the raw
array might not be wise, no?
Because the 'dataCount' limit is not always correctly used, e.g. in
QuadTree in method 'isSimilarQuad' there the array length is used instead.
Also in L. 171 might be a bug regarding that 'capacity' thing:
if (u.getCount() < this.capacity) {
u.addData(data);
Regards,
Peter.