As I understand it right now, load_targets is reading in full rasters into numpy arrays. On 32-bit systems, this will likely result in MemoryError problems. Is it possible to just have load_targets store open rasterio.DatasetReader instances and do line- or block-reads from within impute?
It looks like this may be where #15 is going. If so, sorry for the redundancy.
As I understand it right now,
load_targetsis reading in full rasters into numpy arrays. On 32-bit systems, this will likely result inMemoryErrorproblems. Is it possible to just haveload_targetsstore openrasterio.DatasetReaderinstances and do line- or block-reads from withinimpute?It looks like this may be where #15 is going. If so, sorry for the redundancy.