ats_join_trans | R Documentation |
Add transmission info to fixes to apply offset and infer data substitutions
ats_join_trans(pos, trans)
pos |
Tibble of position data. |
trans |
Tibble of corresponding transmission data. |
A tibble with 25 columns (see fetch_ats_positions
)
fetch_ats_positions
## Not run:
ats_login("mary", ".")
trans <- fetch_ats_transmissions()
ats_get(
path = list(
"download_all_data",
paste0("Download_all_data.aspx?dw=all")
),
task = "download position data"
) %>%
httr::content("text", encoding = "UTF-8") %>%
readr::read_csv(col_types = "ciiiiiidddiic_") %>%
dplyr::rename(JulianDay = Julianday) %>%
ats_join_trans(trans)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.