Martijn Visser

Results 193 issues of Martijn Visser

A reminder for when we get to building the just released GDAL 3.5. This would need a small update to ArchGDAL to use these: > Add GDT_Int64 and GDT_UInt64 data...

enhancement

In this post: https://discourse.julialang.org/t/get-true-maximum-value-of-a-raster/70622/2 I found out that `ArchGDAL.maximum`, does not do any computation, and just returns the typemax if it is not in the metadata. https://github.com/yeesian/ArchGDAL.jl/blob/8f4ace3d927e7f634927a5cb59c605bcbbdffda0/src/raster/rasterband.jl#L225-L231 https://github.com/JuliaGeo/GDAL.jl/blob/3838e938642712cf8a98c52df5937dcfdb19221e/src/GDAL.jl#L8631-L8647 The C...

bug

If we iterate through a layer, we get features. These make up our rows in the tables interface. Therefore I assumed they would behave somewhat like a NamedTuple. In https://discourse.julialang.org/t/find-if-point-is-within-geojson-polygons/70416...

enhancement
question

Right now when updating the minor version of the binaries, the ArchGDAL tests usually fail due to minor differences. See for instance #157. It would be better to modify the...

enhancement
help wanted

At several points in GDAL a StringList is expected for options. I somehow always forget what it should look like. Do you think it would be a good idea to...

enhancement
question

Reminder to add this example of creating a shapefile with projection to the documentation, probably to the Feature data page: https://discourse.julialang.org/t/how-to-create-a-new-shapefile-containing-a-few-points/43454/9

help wanted
documentation

There is a nice docstring for `unsafe_gdalwarp` here: https://github.com/yeesian/ArchGDAL.jl/blob/0c57b987082aec3dbe2999ec5e5a729e0ebdc3fc/src/utilities.jl#L46-L58. It is in the documentation here: https://yeesian.com/ArchGDAL.jl/dev/reference/#ArchGDAL.unsafe_gdalwarp This code wraps a list of unsafe functions in a finalizer, to make them...

documentation

Thanks for open sourcing this library. I was quite excited to take it for a spin, only to get an error "no module named 'fcntl'", and learning through #10, #23...

enhancement

```julia t = """ # https://github.com/SciML/SciMLStyle#comments # In general, comments above a line of code or function are preferred to inline comments. f(; q) = q f( q = 2...

bug

Was a bit surprised by this, since for CSV it is not an issue. This is on Feather.jl v0.4.0: ```julia julia> using DataFrames, Feather, CSV julia> CSV.write("empty.CSV", DataFrame(a=Int[])) CSV.Sink{Nothing,DataType}( CSV.Options:...