Installing this package ensures that the R packages needed for the AniMove course are available on each participant's computer. In addition, it provides example data to be used during the lectures.
install.packages("remotes")
remotes::install_github("AniMoveCourse/animove_R_package")Please contact Anne Scharf (ascharf@ab.mpg.de)
library(animove)
library(raster)
## Load movement data of African buffalo
data(buffalo_ll_mv2) # unprojected (LatLong)
data(buffalo_utm_mv2) # projected (UTM 36S)
## Environmental layers
data(buffalo_env)
## Plot
plot(buffalo_env[[1]])
points(sf::st_coordinates(buffalo_utm_mv2))