Anshul Singhvi
Anshul Singhvi
useful if using Tyler outside of Makie, and will make the code more portable to MapTiles in the future!
Consider https://github.com/MakieOrg/Tyler.jl/blob/e67cf5b14daa08106c225341f83e196c3c5fb124/src/tile-plotting.jl#L196-L212 It turns out that image sample points are supposed to lie between elevation sample points. Not a huge deal - but at a high zoom level where you...
I just tried it on Mapbox's test cases and it seems to work. Now, the only remaining blockers to displaying vector map tiles are: - [ ] we need to...
Since the name is so natural it would be nice to have MapTiles.jl be a toplevel package that includes Downloads.jl/HTTP.jl, TileProviders.jl and some future VectorTiles.jl to be a toplevel package,...
Cdm overhaul
TODOs: - [x] CRS support - [x] Make `reproject` reproject the geometry lookups too - [ ] In-memory `resample` using e.g `zonal`, to rasterize a VDC - [ ] Allow...
Currently we assume dimensions must be XDim and YDim: https://github.com/rafaqz/Rasters.jl/blob/7e9240dca00e1e2df5785d2e2514cb3f86e13a7f/src/methods/burning/line.jl#L4-L26 but we may not have to if the user is allowed to pass their own dimensions. Since we have geometries...
I can't use NCDatasets.jl because of DiskArrays/Zarr version mismatches. ```julia using Rasters, ArchGDAL ras = Raster(rand(LinRange(0, 10, 100), X(1:100), Y(5:150), Ti(1:12))) write("test.nc", ras; source = Rasters.GDALsource(), force = true) ```...
@evetion has experience haha
The vast majority of time spent in computing cell area goes to transforming points from the raster's CRS to spherical 3d points. By chunking we can significantly decrease time spent...