Rafael Schouten
Rafael Schouten
Great. Good to hear there is no rush :sweat_smile: If you would like to collaborate on anything here in future (even just by making more issues with your needs) we...
Is there a reason to use `RasterStack` specifically here? This is easier using `RasterSeries` as what you have is a series of rasters of identical size and type along a...
Closed due to lack of reply from Op, not clear what to add here.
I think we need to first check the file didn't already exist! One error could be that `force=true` was not used and the file existed. Edit: thinking about it, this...
Note: using step range is generally safer but has the small chance of *complete* failure even to load a raster if the length of the range is wrong due to...
Further note: this will work if we use `StepRangeLen`, which didn't exist when Rasters.jl started but you get from `range(; start, stop, length)`
This looks like the problem: ``` (643532 allocations: 240.25 MiB) ``` Which is probably because youre using `lazy=true` with NCDatasets.jl... maybe try `main` ?
Is this still true? the files dont seem to be there anymore to test it.
Ok this not just the time to load the data? `getindex` is not lazy in Rasters like in YAXArrays, it moves data to memory. But `view` is lazy!