| binClstPath-class {EMbC} | R Documentation |
Binary Clustering Path Class
Description
binClstPath is a binClst subclass for fast and easy speed/turn-clustering of movement trajectories. The input trajectory is given as a data.frame with, at least, the columns (timeStamp,longitude,latitude). This format is described in detail in the class constructor stbc. As a binClst subclass, this class inherits all slots and functionality of its parent class.
Slots
pthA data.frame with the trajectory timestamps and geolocation coordinates, plus eventual extra columns that were included in the input path data frame, (see the stbc constructor).
spnA numeric vector with the time intervals between locations (in seconds).
dstA numeric vector with the distances between locations (in meters). We use loxodromic computations.
hdgA numeric vector with local heading directions (in radians from North). We use loxodromic computations.
burstedA logical value indicating whether the
binClstPathinstance has already been bursted. As bursting can be computationally demanding for long trajectories, an instance is bursted only when a burst wise representation of the trajectory' is requested for the first time, (unless this value is changed to FALSE).tracksIf bursted=TRUE, a
SpatialLinesDataFrameobject ("sp" R-package) with the bursted track segments.midPointsIf bursted=TRUE, a
SpatialPointsDataFrameobject ("sp" R-package) with the bursted track midpoints.