Martijn Visser

Results 515 comments of Martijn Visser

Hmm, interesting. Perhaps it's best to raise this issue with DiskArrays? cc @meggart Over there `permutedims` is forwarded to `PermutedDiskArray`: https://github.com/meggart/DiskArrays.jl/blob/7fa75d4a0eb216d7e25a6718b223b8533d0b92c4/src/permute_reshape.jl#L64-L67 Probably Base.PermutedDimsArray should be forwarded to the same (like...

This looks really quite interesting, and appealing especially for exploratory / first time use. What about reproducability? Getting prompted while trying to run someones script could also be a bit...

Yeah, I think that makes sense. If it is for REPL, does it also work for VSCode inline evaluation, Pluto, IJulia, e.g. all interactive environments?

Oh for sure, I think having such example workflows available in the documentation would be a huge help to a lot of people, so yes please! I agree the rasterio...

Yeah I believe it should be called on layers. See also https://github.com/JuliaGeo/GDAL.jl/pull/59. We should probably add the feature count test here as well.

Docs haven't been building since mentioned PR, because we have `strict = true`, so these warnings were turned into errors: ``` ┌ Error: 4 docstrings potentially missing: │ │ Base.convert...

@yeesian in the new `Documenter.jl` a canonical url should be given, which I believe also helps SEO; which do you prefer: - `canonical = "https://yeesian.com/ArchGDAL.jl"` - `canonical = "https://yeesian.github.io/ArchGDAL.jl"` I...

I think either way is fine. If we do yeesian.com and do move the package over to JuliaGeo later, we should put in automatic forwarding similar to how it would...

This issue got sidetracked on whether the docs build at all, but the issue in the top post is not yet addressed, right?

What would you like the result to look like. Is this sufficient? ```julia using ArchGDAL const AG = ArchGDAL p = raw"c:\Users\visser_mn\.julia\dev\ArchGDAL\test\data\utmsmall.tif" ds = AG.read(p) geotransform = AG.getgeotransform(ds) xmin =...