Merging multiple rasters in R

后端 未结 7 1261
傲寒
傲寒 2021-02-01 19:43

I\'ve been trying to find a time-efficient way to merge multiple raster images in R. These are adjacent ASTER scenes from the southern Kilimanjaro region, and my target is to pu

7条回答
  •  灰色年华
    2021-02-01 19:53

    You can use Reduce like this for example :

    Reduce(function(...)merge(...,tolerance=1),ast14dmo.sd)
    

提交回复
热议问题