Júlio Hoffimann
Júlio Hoffimann
This package can be useful in other contexts without GPUs nor neural nets. Could you consider moving some of the dependencies to extensions? Below is the current list of hard...
## Issue The [GeoParquet specification](https://geoparquet.org/releases/v1.0.0) does not adhere to OGC WKT-CRS standards, and instead relies on [PROJJSON](https://proj.org/en/9.4/specifications/projjson.html) strings. Therefore, we need to convert from our native `CoordRefSystems.wkt2` strings added in...
Based on the discussions we had on #269 I am attempting a redefinition of our `isapprox`. The new definition should handle the intricacies of tolerances with angular coordinates. Because this...
Similar to https://github.com/JuliaGeo/Shapefile.jl/pull/139
The MWE below hits a bug in Julia itself: ```julia using NearestNeighbors using StaticArrays using Random x(i) = float.(Tuple(CartesianIndices((100,100,100))[i])) function mwe() Random.seed!(123) sources = rand(1:100*100*100, 3000) |> unique others =...
Below is a MWE with Optim.jl v1.10 (latest stable release) and Julia v1.11: ```julia using Optim using Random gramian(xs, ys; σ=1) = [exp(-euclidsq(x, y) / 2σ^2) for x in xs,...
**Affects:** PythonCall **Describe the bug** The Julia REPL crashes with a segmentation fault after typing ```julia julia> re = pyimport("re") julia> re. ``` ``` [54136] signal 11 (1): Segmentation fault...
Testing our new benchmark infrastructure 🚀 Implemented the same union-split trick proposed by @halleysfifthinc in `HalfEdgeTopology`.
The method is missing and can be useful in some algorithms.
The algorithm is embarrassingly parallel, and should be trivial to run in parallel with multiple threads: https://github.com/JuliaGeometry/Meshes.jl/blob/49654506e8871f237adcf6a403bae6535200930f/src/winding.jl#L44-L65 I am opening the issue in case someone wants to give it a...