Tagged Questions
1
vote
0answers
323 views
Raster grid for zonal statistics in R
I have two raster layer, the first one r is my zonal mask as a raster grid, and I created as:
ext <-extent(Yraster)
r <- raster(nrows=32,ncols=32,ext)
r[] <-(1:ncell(r))
and project it ...