Closed martaiborra closed 3 years ago
If we have an on-disk array stored contiguously, and we compute :
a = ia.open(filepath) a.cfg
Then, a.cfg.contiguous = False. This should be fixed so that a.cfg.contiguous = True, which is the correct Config from the original array.
a.cfg.contiguous = False
a.cfg.contiguous = True
Fixed in https://github.com/inaos/iron-array-python/commit/7db3dc9c3c1960e5860220fecef5392dd3b44261
If we have an on-disk array stored contiguously, and we compute :
Then,
a.cfg.contiguous = False
. This should be fixed so thata.cfg.contiguous = True
, which is the correct Config from the original array.