Fabian Gans

Results 25 issues of Fabian Gans

I want to start a discussion if implementing the `DiskArrays` interface would make sense for this package. Making `HDF5Dataset` a subtype of `AbstractDiskArray` would have the benefit of out-sourcing Base-conformant...

dataset

As outlined in this discourse thread https://discourse.julialang.org/t/common-interface-for-chunked-arrays/26009 I think it would be nice to have a common interface for chunked array stores like HDF5, NetCDF, Zarr etc so that code...

I open this issue to discuss if this package should use DIskArrays.jl to implement efficient indexing + reductions and broadcasting for NCDatasets. This would enable workflows like [this](https://discourse.julialang.org/t/ann-diskarrays-jl/34119) without loading...

So Julia is getting a new threading model and I think packages are supposed to prepare becoming thread-safe. To my best knowledge, the NetCDF C library is not thread-safe and...

This is work in progress that I started some time ago and unfortunately is not based on the last updates (eg. #59 , #55 etc.) This basically happened when I...

Creation and writing to unlimited dimensions is still undocumented.

I am on julia 0.6. Currently the following results in a stack overflow: ```julia x = @data [1.0 2.0 3.0] w = Weights(rand(3)) mean(x,w,skipna=true) ``` because this code https://github.com/JuliaStats/DataArrays.jl/blob/8b9e89617ca3539440a9a1b2fc75fc44f86ec850/src/reduce.jl#L178-L185 seems...

I think this has come up on discourse https://discourse.julialang.org/t/reading-hdf4-files/29470/3 and also recently for my own work I wished our GDAL would support HDF4 for reading MODIS data. I already familiarized...

build

Following up on #52 since we are using shx to move from feature to feature in the file, we can in theory also recover when single entries in the file...

There is a new package called FileIO https://github.com/JuliaIO/FileIO.jl we should consider registering some of the RasterIO formats there. Who wants to look at this? I will try adding the NetCDF...