Anshul Singhvi
Anshul Singhvi
@stemann is this PR ready to go from your perspective?
Will merge tomorrow (Aug 8) if no objections are forthcoming!
I can't replicate this: ```julia using FileIO, ImageIO, Colors save("test.png", repeat([x ? RGB(.2,.2,.2) : RGB(0,0,0) for x in Bool[ 0 1 1 0 0 0 1 0 1 0 0...
Ah, I think I see where the problem is now. I have ImageMagick.jl installed in my environment stack, so ``` julia> save("test.png", repeat([x ? RGB(.2,.2,.2) : RGB(0,0,0) for x in...
Progress has been made on this issue: - A Julia wrapper for xarrays, so we get access to all of the xarray features in Julia: https://github.com/meggart/PyYAXArrays.jl - A Julia wrapper...
For the curious, the FSSpec element of this is implemented in asinghvi17/FSSpec.jl and there is a native Julia Kerchunk reader in asinghvi17/Kerchunk.jl.
Bump, should this be merged?
In terms of new algorithms, what would be needed for filled contours?
Huh. I just read through some of GR's code for this - they actually just use "Z buffering" by drawing from the lowest contour level in ascending order. Using that...
It looks like this change breaks single-row DataFrame conversion. Is there another way to get around this, maybe a `maybe_wrap_in_array` function or something? This functionality is pretty nice because it...