Rafael Schouten
Rafael Schouten
Not sure how you are running these things? It should call `display` automatically if you do that in the REPL. But you can call `display` manually on the output if...
Its probably not useful for anything. And yes that could trigger the wrong gdal methods (it has specific methods for different types, which is kinda crazy) Lets fix it to...
This is enforced now
Yep. Could also be generally useful to have a way to stitch tiles together, `mosaic` is very slow compared to when you know the tiles match step size and dont...
Sweet! Don't hesitate to ping me on things here, or make a work in progress PR. I try to streamline things but DimensionalData.jl is inherantly pretty complicated, and you may...
I've just registered a new version of DiskArrays.jl with lazy `cat`, so we can cat together the SRTM tiles without reading the files.
Ok interesting. I wonder if it's in Rasters.jl or NCDatasets.jl. With GDAL files like tiff you can stream write larger than memory files with DiskArrays.jl, but this isn't implemented in...
The problem is NCDatsets.jl is making a full copy of the array before writing it. There may be away around this.
Yeah the problem was the generic setindex! syntax I was using, I wasn't aware some forms of setindex! on NCDatasets.Variable allocate a new array. This should be fixed now with...
Does this work with NCDatasets.jl? We really need to be able to broadcast the write to dusk chunk by chunk, as we do with TIF files in the archgdal backend....