tsqTracks: tsqTracks

View source: R/Trackstat.R

tsqTracksR Documentation

tsqTracks

Description

tsqtracks returns a sequance of time based on a list of tracks (or a single object of class "Track"") and an argument timestamp.

Usage

tsqTracks(X,timestamp)

Arguments

X

either an object of class "Track"" or a list of some objects of class "Track"

timestamp

a timestamp to create the time sequence based on it

Details

This creates a sequence of time based on a track or a list of tracks.

Value

An object of class "POSIXct" or "POSIXt".

Author(s)

Mohammad Mehdi Moradi <moradi@uji.es>

See Also

rTrack

Examples

library(sp)
library(spacetime)
# t0 = as.POSIXct(as.Date("2013-09-30",tz="CET"))
t0 = as.POSIXct("2013-09-30 02:00:00", tz = "Europe/Berlin")
# person A, track 1:
x = c(7,6,5,5,4,3,3)
y = c(7,7,6,5,5,6,7)
n = length(x)
set.seed(131)
t = t0 + cumsum(runif(n) * 60)
crs = CRS("+proj=longlat +datum=WGS84") # longlat
stidf = STIDF(SpatialPoints(cbind(x,y),crs), t, data.frame(co2 = rnorm(n)))
A1 = Track(stidf)
tsqTracks(A1,timestamp = "1 sec")

trajectories documentation built on Nov. 28, 2023, 1:10 a.m.