read_columbus.Rd
read_columbus()
imports latitude and longitude from a Columbus gps logger file.
read_columbus(
path,
gps_format = "nmea",
filter_fix = NULL,
tzone_gps = "UTC",
tzone_out = "America/New_York",
participant_id = NULL,
sample_col = NULL,
sample_id = NULL
)
string; filepath of input .csv
string; format of the input file ('nmea' or 'csv')
logical; should coordinates with invalid GPS fix be filtered out? Default = NULL 'gps_format' must be set to 'NMEA.'
character; time zone of the Columbus logger. Default = 'UTC'
character; time zone of the output file. Default = 'America/New_York.'
user defined string to denote a personal identifier. This is useful if the GPS unit is deployed during personal sampling. If specified, a new column is created ('ID'). Default is NULL.
character; user defined character string specifying the name of the column to denote sample ID. Default is NULL.
user defined string to denote sample ID. If assigned, a
value must also be supplied to sample_col
. Default is NULL.
a tibble.
if (FALSE) {
read_columbus(path, tzone_gps = "UTC", tzone_out = "America/New_York.")
}