Guest User

Untitled

a guest
Jan 17th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. library(raster)
  2.  
  3. MODIS <- stack('path/to/modis stack.extension')
  4. Masks <- stack('path/to/mask stack.extension')
  5.  
  6. MODIS_masked <- mapply(FUN = function(x,mask) mask(x = x, mask = mask),x = as.list(MODIS), mask = as.list(Masks))
  7. MODIS_masked <- stack(MODIS_masked)
Add Comment
Please, Sign In to add comment