You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that when we give a meta object as input of a sar dataset object, the reader is read twice. It is unnecessary to read two times same data whereas it has already been done.
I tried to remove the use of BlockingActorProxy , and so add a specific __getattr__ method for Meta classes ( BaseMeta).
But I faced recursion problems because at the end of the dataset class __init__, an update of the attributes of the datatree tries to fill the coverage (with the coverage property in the meta) that indirectly call to _bbox_ll. This last method wasn't found (recursion), I don't know why.
It should be good to make the reader being read an only time.
The text was updated successfully, but these errors were encountered:
I noticed that when we give a meta object as input of a sar dataset object, the reader is read twice. It is unnecessary to read two times same data whereas it has already been done.
I tried to remove the use of
BlockingActorProxy
, and so add a specific__getattr__
method for Meta classes (BaseMeta
).But I faced recursion problems because at the end of the dataset class
__init__
, an update of the attributes of the datatree tries to fill the coverage (with thecoverage
property in the meta) that indirectly call to_bbox_ll
. This last method wasn't found (recursion), I don't know why.It should be good to make the reader being read an only time.
The text was updated successfully, but these errors were encountered: