mt_segments {move2} | R Documentation |
Create a LINESTRING
for each track segment
Description
Creates a LINESTRING
for each segment between consecutive points within a track.
Usage
mt_segments(x)
Arguments
x |
A |
Details
The last location of each track is formed by a POINT
as no segment can be formed.
Value
A sfc
object containing LINESTRING
s for each segment of a trajectory.
See Also
-
mt_track_lines()
For transforming the full tracks into oneLINESTRING
.
Examples
track <- mt_sim_brownian_motion()
mt_segments(track)
## adding the segments as an attribute to the move2 object
track$segments <- mt_segments(track)
track
[Package move2 version 0.3.0 Index]