track | R Documentation |
track_*
Constructor to crate a track, the basic building block of the amt
package. A
track
is usually created from a set of x
and y
coordinates, possibly
time stamps, and any number of optional columns, such as id, sex, age, etc.
mk_track(
tbl,
.x,
.y,
.t,
...,
crs = NA_crs_,
order_by_ts = TRUE,
check_duplicates = FALSE,
all_cols = FALSE,
verbose = FALSE
)
make_track(
tbl,
.x,
.y,
.t,
...,
crs = NA_crs_,
order_by_ts = TRUE,
check_duplicates = FALSE,
all_cols = FALSE,
verbose = FALSE
)
track(x, y, t, ..., crs = NULL)
tbl |
|
.x , .y , .t |
|
... |
|
crs |
|
order_by_ts |
|
check_duplicates |
|
all_cols |
|
verbose |
|
x , y |
|
t |
|
If t
was provided an object of class track_xyt
is returned
otherwise a track_xy
.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.