I have a huge raster (> 20 GB) and trying to convert it to one txt file. Is there a way to do that in parallel R computing? I couldn't load RAM to the memory as it is quite bit.
My computer has 8 cores and 16 Gb of RAM
best
I have a huge raster (> 20 GB) and trying to convert it to one txt file. Is there a way to do that in parallel R computing? I couldn't load RAM to the memory as it is quite bit.
My computer has 8 cores and 16 Gb of RAM
best
Divide your raster in 2 rasters, in the most convenient way to recombine them later (a horizontal division). Then create 2 .txt files using the same command on 2 different instances of R. You can try to recombine them afterwards using this if you use Windows.
You can divide your original rasters in 8 and do the same but I guess it would be tedious (although likely faster).