Learn R Programming

move2 (version 0.4.4)

mt_segments: Create a LINESTRING for each track segment

Description

Creates a LINESTRING for each segment between consecutive points within a track.

Usage

mt_segments(x)

Value

A sfc object containing LINESTRINGs for each segment of a trajectory.

Arguments

x

A move2 object.

Details

The last location of each track is formed by a POINT as no segment can be formed.

See Also

  • mt_track_lines() For transforming the full tracks into one LINESTRING.

Examples

Run this code
track <- mt_sim_brownian_motion()
mt_segments(track)
## adding the segments as an attribute to the move2 object
track$segments <- mt_segments(track)
track

Run the code above in your browser using DataLab