Martijn Visser

Results 193 issues of Martijn Visser

And test running single layer SBM models

user-experience

Came up in https://github.com/JuliaGeo/GDAL.jl/pull/75#discussion_r317390507. We currently never free the memory, resulting in a (probably small) memory leak. In `aftercare(::Ptr{Cstring})` we should free this at least in the case of `CPLGetConfigOptions`,...

enhancement

For measures, floats smaller than -1e38 are considered "no data". Perhaps we should convert these to `missing`, and write `missing` to small floats. This also goes for the `Mmin` and...

Some of the Natural Earth file downloads in the tests seem to be failing both in CI and locally. Perhaps we should replace the RemoteFiles solution with something like https://github.com/yeesian/ArchGDAL.jl/issues/154....

DictEncode signals that a column/array should be dictionary encoded when serialized to the arrow streaming/file format. The current constructor will happily wrap a DictEncode in another DictEncode. https://github.com/apache/arrow-julia/blob/v2.2.1/src/arraytypes/dictencoding.jl#L69 Does it...

I noticed in https://github.com/lutraconsulting/serval/pull/37/files#diff-f2560f16ca0305bd2df9c6351db8df4e106894faf5d0ad53d09fa5c6effaab4dR689 there were some updates to `check_layer`. One of the checks that has to pass is ```python os.path.isfile(layer.dataProvider().dataSourceUri()), # is it a local file? ``` When opening...

Sorry for the massive PR. I wanted to make a PR similar to https://github.com/yeesian/ArchGDAL.jl/pull/349. By defining methods like: ```julia Base.unsafe_convert(::Type{Ptr{Cvoid}}, x::AbstractGeometry) = x.ptr ``` We can let `ccall` know how...

When this package was still called Proj4.jl the geodesic functions were offered in a higher level interface: [proj_geodesic.jl](https://github.com/JuliaGeo/Proj4.jl/blob/9a63d757cf77a839bee336f398efd21928a4975f/src/proj_geodesic.jl). It might be nice to restore such an interface. The geodesic ccall...

enhancement

Recently GeometryBasics.jl added `Aqua.test_all` in `runtests.jl`. It is working well, but the package has quite a few deprecations defined in [deprecated.jl](https://github.com/JuliaGeometry/GeometryBasics.jl/blob/3cdb91f518db3196b2dedea2a097233ca4778eb3/src/deprecated.jl). Since [adding Aqua](https://github.com/JuliaGeometry/GeometryBasics.jl/commit/3cdb91f518db3196b2dedea2a097233ca4778eb3) I noticed the full list of...

I was looking at a question in [Discourse](https://discourse.julialang.org/t/lwfbrook90-simulation-question/104193) and ran into a MethodError. Reading the comment in https://github.com/jonniedie/ComponentArrays.jl/blob/v0.15.2/src/array_interface.jl#L34-L35 I guess this may be of interest here. Defining the "possible fix"...