Animove Meta-Package
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.
Installation
Install system dependencies
Please make sure that the GDAL libraries are installed on your system.
- Windows: use the OSGeo4W installer
- Ubuntu:
sudo apt install gdal-bin libgdal-dev
- MacOS: ask Siri
Install the animove R package itself
install.packages("remotes")
remotes::install_github("AniMoveCourse/animove")
Included Example Data
library(animove)
## Load movement data of African buffalo
data(buffalo_ll) # unprojected (LatLong)
data(buffalo_utm) # projected (UTM 36S)
## Environmental layers
data(buffalo_env)
## Plot
plot(buffalo_env[[1]])
points(buffalo_utm)