Convert an agentMatrix
object into a SpatialPointsDataFrame
object.
turtles2spdf(turtles)
# S4 method for agentMatrix
turtles2spdf(turtles)
AgentMatrix
object representing the moving agents
.
SpatialPointsDataFrame
object representing the moving agents
(coordinates and data)
as contained in turtles
.
t1 <- createTurtles(n = 10, coords = cbind(xcor = 1:10, ycor = 1:10))
if (requireNamespace("sp", quietly = TRUE)) {
sp1 <- turtles2spdf(turtles = t1)
}