Anshul Singhvi
Anshul Singhvi
This is a more general issue with `collect(diskarray)` then? Good to know, but a lot of people will use it naively. Should collect specifically return what one would expect on...
Hmm, looks like heatmap's convert_args call `el32convert` which calls `elconvert`. Have a look at these lines: https://github.com/MakieOrg/Makie.jl/blob/6dfb420445065c56f5af7944c87ecdfc22eff507/src/conversions.jl#L707C1-L718C4 `elconvert` is calling `map` if it finds an abstract array with missings, or...
OK, I have a smaller MWE: ```julia map(identity, parent(ds["DQF"])) ``` gives me a bad heatmap. [`map(f, A::AbstractArray) = collect_similar(A, Generator(f,A))`](https://github.com/JuliaLang/julia/blob/7c1935d5bf2a7b13008a9494f626febbccd8bf7c/base/abstractarray.jl#L3397) is the implementation that Julia points me to, and I...
According to `@which` at least, it's not being used...
Ah this is https://github.com/meggart/DiskArrays.jl/issues/144 again, I hadn't seen that issue
I don't have access to YAXArrays on my current system, but I tested with Rasters/DD/DiskArrays latest, and this is indeed working. Probably fixed by #198.
Also note that it's similar to `Between`
This probably wants https://github.com/rafaqz/DimensionalData.jl/issues/956 to enforce structure down tree branches, along with maybe some form of refdims support in the tree.
I guess the idea here is to be able to keep dims at different levels of a tree? Sort of like a less structured RasterSeries at each tree level that...
That sounds great! Excited to see it. This would probably also interact well with RechunkedDiskArray (`cache(RechunkedDiskArray(...))` would be a nice workaround to super low file load speeds from archival hard...