import_run.Rd
Import Run (Standard: GPX) to Data Frame
import_run(file = "data/2017-11-06.gpx", type = "gpx", track_progress = TRUE)
file | path and file name. |
---|---|
type | Type of log-file: currently, only gpx is supported. |
track_progress | T/F if data loading progress tracking is wished for |
A data frame containing basic information about your run.
ID for each track point
elevation above sealevel in meters
time (in POSIXct-format)
time since start (in seconds)
distance since the last trackpoint
cumulative distance since the beginnning
x-coordinate (longitude (East-West-Dimension))
y-coordinate (longitude (North-South-Dimension))
So far, only the gpx-format from Sportstracker is implemented.
# NOT RUN { run <- import_run(file = 'data/2017-11-06.gpx',type = 'gpx') head(run) # }