Learn R Programming

trajectories (version 0.2-9)

as.Track.ppp: Conver trajectory pattern to a list of objects of class ppp

Description

This function converts a list of Tracks to a list of point patterns (class "ppp")

Usage

as.Track.ppp(X,timestamp)

Value

A list of point patterns, objects of class "ppp".

Arguments

X

a list of Track objects

timestamp

based on secs, mins,...

Author

Mohammad Mehdi Moradi <moradi@uji.es>

Details

as.Track.ppp converts a list of Track objetcs to a list of ppp objetcs.

See Also

avedistTrack, as.ppp

Examples

Run this code
if (require(spatstat.geom)) {
X <- list()
for(i in 1:10){
  m <- matrix(c(0,10,0,10),nrow=2,byrow = TRUE)
  X[[i]] <- rTrack(bbox = m,transform = TRUE)
}
Y <- as.Track.ppp(X,timestamp="120 secs")
}

Run the code above in your browser using DataLab