Results 67 comments of Alex

I don't really have anything to add on the technical side, but I just wanted to say that with Quarto gaining popularity I think adding this feature could allow for...

@cderv I do think it is something that should be considered for both inclusion in Quarto (so it knows how to render the document) and for Rstudio's visual editor (which...

I was actually mistaken about the differing extents. I tried using a `SpatRasterDataset` instead of a `list` of rasters and got "Error: [sds] extents do not match ()".

@mtennekes, it seems to happen with large multiband rasters written to disk. Using `ignore_file=TRUE` seems to be a functional workaround. I also tried using 2 layers as in the multiband...

I would also like to add `focal` and `focalCpp` to the wishlist since focal operations can be computationally expensive (and I use them a lot 😅).

@tim-salabim thanks, works great now!

It may be worth sending out the minimal example to the Rcpp developers listserv. Perhaps someone on there may be able to provide some insight into why this occurs.

I tried breaking rasters into chunks and using a parallelized version of `lapply` from the `future.apply` package. The idea here is breaking the raster into chunks and sending each chunk...

I saw that earlier in the thread `wrap` and `unwrap` were mentioned. I can get parallelization working if I wrap each chunk before sending it out to a core and...