ats_trans_dates | R Documentation |
Add date columns to transmission data
ats_trans_dates(trans)
trans |
A tibble of transmission data |
A tibble with dates in UTC and local (system) time added
## Not run:
ats_login("mary", ".")
ats_select_collars("044286")
ats_post(
path = "Servidor.ashx",
body = list(
consulta = "download_trans_collars"
),
task = "download transmission data"
) %>%
ats_parse_xml() %>%
dplyr::mutate(
DateCT = as.POSIXct(
fecha,
tz = "America/Menominee"
),
GmtOffset = as.numeric(gmt) * -1
) %>%
ats_trans_dates()
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.