Rafael Schouten

Results 1033 comments of Rafael Schouten
trafficstars

GeoData.jl has the `open` method the you use with a do block to write to the open ArchGDAL.jl/DiskArrays.jl dataset underneath. I havent really tested it for writing, more just for...

Ok looks like there should have been a lower bound on GDAL.jl /GDAL_jll to make sure we get the version where `GDT_Int8` exists. This may be annoying to fix, it...

It could be 1.8 related if some other dep lower bounds to 1.9 and forces older versions. (Yes, compat bounds are probably the thing to change, although theres a lot...

someone just needs to fix the GDAL versions in the registry for ArchGDAL

https://github.com/JuliaRegistries/General/pull/107486 Also note we are now likely to have conflicts with ImageMagick due to libgeotiff_jll deps. Thats likely why running `update` is not removing this problem - mostly we cant...

Aggregate can't always have the same extent, unless you have perfect integer division. If you want to keep the size, use resample. But resample has other problems, usually you should...

But yeah in this case seems it should work... If you have a MWE I can fix it (Maybe you have Points? The logic may not work so well for...

Ok, what you have are Points, the default. To specify corner intervals, use this: ```julia using Rasters.Lookups src = Raster(rand(100,100); dims=(X(0:99; sampling=Intervals(Start()))),Y(0:99; sampling=Intervals(Start())))) #considering (0,0) as the corner dst =...

Notice how the REPL printing shows if you have points or intervals, and if intervaals have start/center/end locus. ```julia ╭───────────────────────────╮ │ 100×100 Raster{Float64,2} │ ├───────────────────────────┴────────────────────────────────────────────────────────────────── dims ┐ ↓ X Sampled{Int64}...

Yes we should try to minimise how much we get `Explicit` lookups. But also we should try to convert `Explicit` to `Regular` before we rasterize as sometimes that will be...