Dears,
I'm running GRASS 7.8.3 from within R, my goal is to run r.surf.contour to
generate a DEM from a vector file of contour lines.
To overcome the low memory, I tiled the contour lines after converting them
to raster. Now I don't know how to access the tiles in the mapset to apply
r.surf.contour.
When I map the tiles in the mapset and try to store the grass names in an
object in R, I get an empty object.
grass.names <- execGRASS(cmd="g.list", type='raster',
pattern='r_contours_tile*')
Can someone indicate some material or a concrete example of how to run a
GRASS tool on tiled data using rgrass7?