cellFromPxcorPycor {NetLogoR} | R Documentation |
Cells numbers from patches
coordinates
Description
Report the cells numbers as defined for a Raster*
object given the patches
coordinates pxcor
and pycor
.
Usage
cellFromPxcorPycor(world, pxcor, pycor)
## S4 method for signature 'worldNLR,numeric,numeric'
cellFromPxcorPycor(world, pxcor, pycor)
Arguments
world |
|
pxcor |
Integer. Vector of patches |
pycor |
Integer. Vector of patches |
Value
Numeric. Vector of cells number.
Author(s)
Sarah Bauduin
Examples
w1 <- createWorld(minPxcor = 0, maxPxcor = 9, minPycor = 0, maxPycor = 9)
cellFromPxcorPycor(world = w1, pxcor = 0, pycor = 9)
cellFromPxcorPycor(world = w1, pxcor = c(0, 1, 2), pycor = 0)
[Package NetLogoR version 1.0.5 Index]