ats_trans_dates: Transmission Dates

ats_trans_datesR Documentation

Transmission Dates

Description

Add date columns to transmission data

Usage

ats_trans_dates(trans)

Arguments

trans

A tibble of transmission data

Value

A tibble with dates in UTC and local (system) time added

Examples

## 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)


Huh/collar documentation built on Aug. 5, 2022, 11:02 p.m.