| cellFromXY | R Documentation | 
Get cell number(s) of a Raster*TS object from row and column numbers or X and Y coordinates.
## S4 method for signature 'RasterStackBrickTS,numeric,numeric'
cellFromRowCol(object, row, col)
## S4 method for signature 'RasterStackBrickTS'
cellFromXY(object, xy)
## S4 method for signature 'SpatRasterTS,numeric,numeric'
cellFromRowCol(object, row, col)
## S4 method for signature 'SpatRasterTS'
cellFromXY(object, xy)
object | 
 SpatRaster  | 
col | 
 integer. column number(s)  | 
row | 
 integer row number(s)  | 
xy | 
 matrix of x and y coordinates  | 
These functions are essentially a wrapper to cellFromRowCol and  cellFromXY
in raster package, work with Raster*TS objects.
row, column or cell number(s). cellFromLine and cellFromPolygon return a list.
Babak Naimi naimi.b@gmail.com https://r-gis.net/
## Not run: 
file <- system.file("external/ndvi", package="rts")
rt <- rts(file) # read the ndvi time series from the specified file
cellFromRowCol(rt,15,20)
cellFromRowCol(rt,c(16:20),c(11:15))
cellFromXY(rt,c(645000,57345000))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.