logical; if FALSE, Track objects will be formed from
unique sets of points, meaning that gaps between two consecutive
Track objects will arise; if FALSE, the first point from each
next track is copied, meaning that sets of Track are seamless.
Value
The cut method applied to a Track object cuts the track in pieces, and
hence returns a Tracks object. cut.Tracks returns a Tracks object,
cut.TracksCollection returns a TracksCollection.
Details
sub-trajectories can be invalid, if they have only one point, and are ignored. This
can happen at the start only if touch=FALSE, and at the end in any case.
# NOT RUN {data(storms)
dim(storms)
dim(cut(storms, "week", touches = FALSE)) # same number of geometriesdim(cut(storms, "week")) # increase of geometries = increase of tracks# }