Anshul Singhvi

Results 386 issues of Anshul Singhvi

This PR reformats the compressors to be in a folder with separate files, and documents the "compressor API". (Previous commits added the fletcher32 filter as a compressor, but on review...

From https://github.com/zarr-developers/numcodecs/pull/524 it looks like zarr-v3 has a narrower definition of codecs. There isn't much detail at the moment, but I wanted to at least mention it and maybe start...

https://github.com/JuliaIO/Zarr.jl/blob/f436713a10a9d16ca82417176e1c8f6a3e26bc8a/src/Compressors.jl#L139-L147 It looks like the `clevel` field in the compressor is not accessed, even in `zcompress`? Not sure if this is intentional or I am missing something.

MWE: ```julia using GeometryBasics, GeoDataFrames df = DataFrame(geometry = rand(Point2f, 100)) df.area_km2 = [rand(10) for i in 1:100] GeoDataFrames.write("test.gpkg", df) ``` https://github.com/evetion/GeoDataFrames.jl/blob/9512d12a3b13aecafafb84984de750f54d601e4c/src/io.jl#L163-L165

This PR adds benchmarks for [Rasters.jl](https://github.com/rafaqz/Rasters.jl), and adds a `pixi` environment file to manage the installations of R, Python, Julia, and packages. I added the pixi file because there's a...

It would be cool to pass through `axis` and `figure` kwargs in `ferriteviewer`, so we can configure things like aspect ratios and labels, or set figure size!

I accidentally indexed an 800x800x163 ish Zarr based YAXArray (pure Julia) by 1:1000, 1:1000, 1:15. This didn't throw a `BoundsError` as expected - instead, the operation went on silently, and...

question

#768 already does a lot! But there are still a few low hanging fruit. For reference, ```julia # setup using Rasters, ArchGDAL using Rasters.Lookups dX = 0.0006 dY = -0.0003...

This PR introduces a function `mapzonal` that looks like this: ```julia mapzonal(reducer, operator, raster; of = geometries) ``` `operator` is fed each slice of the raster in all dimensions except...