Rafael Schouten

Results 289 issues of Rafael Schouten

Add methods to operations like `disjoint`, `crosses` etc to accept arbitrary GeoInterface.jl compatible geometries and convert them to ArchGDAL geometries with the shared `to_gdal` method and `geointerface_geomtype`. The returned values...

We assume traditional point order in most geometry methods, but methods like `reproject` dont force it and can return flipped point order with some projections. We need to go either...

enhancement

Since we have a type parameter now, changing the type in GDAL is not enough, we need to update the type and return a new object.

I have always struggled to read method errors. Past a degree of type complexity it becomes very hard to see where one argument stops and the next starts. This PR...

error messages

I'm moving a lot of code to extensions and wanted to run JET afterwards. But it seems this is quite difficult? `report_package` doesn't report on extensions, and `report_file` isnt giving...

I noticed in Stencils.jl that when I'm using a fast stencil (e.g. 3x3 window summing over a `Matrix{Bool}`) that the indexing in `__thread_run` takes longer than actually reading and summing...

Given that `DynamicCheck()` breaks SIMD this can be an order of magnitude faster for some inexpensive tasks. I'll write up a better MWE, but this is the scale of it...

**Describe the bug 🐞** When optimizing with `NelderMead()` things work completely fine unless I use `lb` and `ub` keywords. When I try to enforce bounds (between zero and one for...

bug

Calling `Tables.istable` ends up at `hasmethod` as a fallback. (via TableTraits.jl and IteratorInterfaceExtensions.jl) This is super slow. It can be seen as the big chunk in blue/green in this flame...

This is a start on #1684, with `Exponential` as an example to start the discussion, I'm not personally across the problems this may cause so this PR is a request...