标签: r maps r-raster
我如何crop right raster to extent of left raster以下? 我用过:
crop right raster to extent of left raster
cr <- crop(right, extent(left),snap="out") fr <- rasterize(left, cr) r<- mask(x=cr, mask=fr)
但没有成功。
感谢您提出建议。
答案 0 :(得分:-1)
我使用cr <- crop(right, extent(-141.01807 , -52.61941, 41.68144, 60), snap="out")得到了答案,但我想应该有一种聪明的方法来使用栅格本身的范围,而不是通过目视检查使用shapefile
cr <- crop(right, extent(-141.01807 , -52.61941, 41.68144, 60), snap="out")