Rafael Schouten
Rafael Schouten
I was trying to track some broken styling in inputs.jl, but the eval blocks make it a little hard to track what is happening! I'm wondering if it is worth...
Now that this is released and I have Flatten.jl I don't need AutoInteract.jl anymore... I'll be directly using this packages for making UIs, so I was wondering how my efforts...
Improves type stability where possible by keeping enums as types in `Val{wkbLineString}` and by forcing child object types from `getgeom`. ~~Also adds a low allocation `getpoint` method.~~ Edit: review when...
See: https://github.com/yeesian/ArchGDAL.jl/blob/master/test/test_geometry.jl#L292 I'm trying to fix type stability of geometry creation for performance (some large gains from small changes) but `createlinearring` is a strange wart to special-case. Why does it...
https://github.com/yeesian/ArchGDAL.jl/blob/6d67ee60bfdc3cd680c57efa3bc504bbeae088cb/src/raster/array.jl#L106-L107 There is `TILED=NO` for the GTiff driver, so `Chunked` is not always true. I'm not sure what the function is to check if a band is chunked or not,...
There don't seem to be any tests for `create` for rasters or examples of constructing a whole new GeoTiff from scratch. I'm looking to save back to tiff from GeoData.jl....
Currently you can load metadata but need to call GDAL to set metadata. It would be good to wrap that here.
Recipes currently require depending on Makie.jl. It has a lot of dependencies compared to RecipesBase.jl: https://github.com/JuliaPlots/Makie.jl/blob/master/Project.toml https://github.com/JuliaPlots/RecipesBase.jl/blob/master/Project.toml I'm keen to write recipes for packages like DimensionalData.jl and GeoData.jl. Adding Plots.jl...
It would be useful to be able to style additional attributes of colorbars, as discussed recently on slack in plotting ~- [ ] tick size~ ~- [ ] tick color~...
Some wrapper types like `AxisArray`, `NamedDImsArray` and `DimArray` (and probably `LabelledArray`?) need to be the "outside" wrapper for, e.g. keeping the axis index accurate and dispatch for `getindex` methods. This...