Martijn Visser
Martijn Visser
Interesting. Using LibGEOS.jl this works as expected: ```julia julia> using LibGEOS julia> ring1 = readgeom("LINEARRING (0 0,0 1,1 1)") ERROR: GEOSError IllegalArgumentException: Points of LinearRing do not form a closed...
It might be nice to add something like `ArchGDAL.imread(path; red=3, blue=5, green=6)` https://www.esri.com/arcgis-blog/products/product/imagery/band-combinations-for-landsat-8/
`fillvalue = nothing` ignores the fillvalue that is set, right? What would be a good way to mimic xarray behavior, to convert the missing data to `NaN` instead of `missing`?...
Thanks for the detailed answer. I agree that `missing` makes most sense as the default missing value. Good to hear you'd be open to something like ``` cfvariable(ds.group["posterior"],"g",sentinelvalue = NaN)...
Yes you can bump the patch version of the version_offset to 3. I see there are still errors on Windows: > Could NOT find PostgreSQL (missing: PostgreSQL_LIBRARY) (found version "14.3")...
Thanks for raising the issue and sharing the code. I think indeed just using zipped shapefiles is becoming more common with other software like GDAL supporting it directly. One alternative...
Why is it that no other package will accept it? The [docs](https://juliageo.org/GeoInterface.jl/stable/reference/api/#GeoInterface.coordinates-Tuple{Any}) say > Return (an iterator of) point coordinates. For say a LineString we return a JSON3.Array of JSON3.Array,...
Good to have an issue for this here. It was also discussed [here](https://github.com/MakieOrg/GeoMakie.jl/pull/123#issuecomment-1216862541), and I commented on [this](https://github.com/quinnj/JSON3.jl/issues/198#issuecomment-1217145799) upstream issue.
That's interesting, thanks for sharing. Are you aware of [GeoMakie](https://github.com/MakieOrg/GeoMakie.jl)? Makie itself uses [GeometryBasics](https://github.com/JuliaGeometry/GeometryBasics.jl/) geometry types, and since GeometryBasics implements the GeoInterface as well, this should allow GeoMakie to accept...
> my impression was that it is geared towards plotting geographical data and does not really help with plotting say a LibGEOS.Polygon I'd think the latter would also be a...