Rafael Schouten
Rafael Schouten
This works now, but not with zooming: for that we need Makie.jl recipes.
How easy would it be to hook PyramidScheme into Rasters?
Cool! @olegfafurin please feel free to make issues here for literally any problems you have or missing features you find. That kind of feedback is really useful at this stage....
The tests look good! Happy its useful :)
Also nice use of readme as the interface description! Do you imagine packages will have this as a dependency, or just for checking the interface?
Yes abosolutely. Packages could just have it as a test dependency.
Amazing! Thanks for putting that together. ~~I think `boundary=:touches` in Rasters.jl may be a better comparison here? I assume thats what `all_touched` does in rasterio.~~ ~~`:inside` should have less pixels...
Looking through rasterio it seems we are actually comparing with GDAL, which is a good benchmark. The second, very close version with `:center` is basically the output of [PolygonInbounds.jl](https://github.com/KlausC/PolygonInbounds.jl). I'm...
I was mistaken, GDAL is actually using Floating point for that - also pretty hard to understand that algorithm! I can't currently get a rasterio build working on my machine...
Yes it should be doable in ArchGDAL, it will just needs a lot more code than Rasters.jl. `gdalrasterize` to make a mask of the shapes (converted to GDAL polygons) then...