Chris Toney

Results 61 comments of Chris Toney

>the equivalent of `translate expand.vrt -expand` at the cli, which I think is not possible in gdalraster atm We do have `gdalraster::translate()`, do you mean a separate issue? I have...

The color table could also be written to the VRT with `ds$flushCache()`. The code below shows that and checks the display of both VRTs. With `flushCache()`: >Using this method does...

https://github.com/hypertidy/filearchy/issues/1 seems to resolve

@mdsumner Apologies, just getting back to this. I wanted to check in on status and how you would like to proceed. >I don't really know what it should be called,...

Hi @mdsumner, #570 adds `pixel_extract()`. Is it ok if I add you as reviewer there as well? Open to any changes and not urgent to merge.

I think the workflow copying to MEM dataset in #570 could potentially be extended to large remote raster using VRT to define chunks, with the chunks sized by `max_ram` and...

Thanks for the quick response. >If your repo with added finalizer public? It's currently in a branch of my fork here, but will be merged sometime soon. https://github.com/ctoney/gdalraster/blob/vsifile/src/vsifile.h https://github.com/ctoney/gdalraster/blob/vsifile/src/vsifile.cpp I...

update to the above, the class with finalizer has been merged in main: https://github.com/USDAForestService/gdalraster/blob/main/src/vsifile.h https://github.com/USDAForestService/gdalraster/blob/main/src/vsifile.cpp

It's a nice API to be able to wrap and use from R. Class `VSIFile` is in pretty good shape now I think, and has a decent set of tests...

From https://stackoverflow.com/questions/59384221/proper-way-to-return-a-pointer-to-a-new-object-from-an-rcpp-function >Rcpp Modules register a default finalizer that calls the object's destructor. You can also add a custom finalizer if needed. Sorry, I didn't catch that before. My rationale,...