Rafael Schouten
Rafael Schouten
Its not easy to find e.g. the Stefan Bolzmann constant. Searching the docs for `Stefan` returns nothing. It would be nice if there was a page listing all the docs...
Because the type is fixed to `DynamicCheck` here: https://github.com/JuliaGPU/CUDA.jl/blob/25fd692c1d658d731109920c282dc1bcf95deb42/src/CUDAKernels.jl#L68-L70 The dynamic bounds check here is always triggered: https://github.com/JuliaGPU/CUDA.jl/blob/25fd692c1d658d731109920c282dc1bcf95deb42/src/CUDAKernels.jl#L182-L187 even when it doesn't need to be (KernelAbstractions return `NoDynamicCheck()` from `partition`)
This PR reduces array allocations for some nice performance improvements. It makes `missing_omit` `_maybe_missing_omit`, which does nothing when none of the columns have `Missing` eltypes. I suspect `modelcols` can be...
It's very cool that storing geometry column name metadata like this works: https://github.com/evetion/GeoDataFrames.jl/pull/47 I just realised it should also work in Rasters.jl, and probably lots of other places. Maybe we...
https://github.com/topojson/topojson
```julia help?> GI.properties GeoInterface.properties(feat) => properties Retrieve the properties of feat. This can be any Iterable that behaves like an AbstractRow. Ensures backwards compatibility with GeoInterface version 0. ``` But...
Using `getgeom(multipolygon)` rather than `getgeom(polygon, i)` is recommended... but in practice the later is used a lot and is currently insanely slow if you have e.g. 100 holes in a...
We are currently just calling `getring` and assuming they have the correct winding. Which will often not be true. Probably a pretty serious bug. I guess we need to detect...
A key advantage of using native julia code instead of GDAL is we can do everything lazily. Recently using GeoJSON.jl with Rasters.jl I found it effortlessly handled rasterizing 3GB files...
Profiling Rasters.jl with the NCDatasets.jl backend I noticed `getindex` in `DiskArrays.jl` is a large fraction of inference, the two large columns to the right and a lot of the area...