Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/MotusWTS/motus
R package for users of data from https://motus.org
https://github.com/MotusWTS/motus
bats birds insects science telemetry tracking
Last synced: 3 months ago
JSON representation
R package for users of data from https://motus.org
- Host: GitHub
- URL: https://github.com/MotusWTS/motus
- Owner: MotusWTS
- License: gpl-3.0
- Created: 2017-11-16T22:25:53.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2024-06-04T18:42:01.000Z (5 months ago)
- Last Synced: 2024-08-05T00:35:15.235Z (3 months ago)
- Topics: bats, birds, insects, science, telemetry, tracking
- Language: R
- Homepage: https://motuswts.github.io/motus/
- Size: 406 MB
- Stars: 17
- Watchers: 6
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- open-sustainable-technology - motus - An R package for processing automated radio telemetry data from Motus, an international collaborative research network that uses coordinated automated radio telemetry to facilitate research and education on the ecology and conservation of migratory animals. (Biosphere / Avian Monitoring and Analysis)
README
[![:name status badge](https://birdscanada.r-universe.dev/badges/:name)](https://birdscanada.r-universe.dev/)
[![motus status badge](https://birdscanada.r-universe.dev/badges/motus)](https://birdscanada.r-universe.dev/motus)
[![R-CMD-check](https://github.com/MotusWTS/motus/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/MotusWTS/motus/actions/workflows/R-CMD-check.yaml)
[![Codecov test coverage](https://app.codecov.io/gh/MotusWTS/motus/branch/main/graph/badge.svg)](https://app.codecov.io/gh/MotusWTS/motus?branch=main)# motus
An R package for handling [Motus](https://motus.org) automated radio-telemetry data.
See the [motus package site](https://motuswts.github.io/motus/) for detailed usage information.
## Installation
The easiest way to install motus is from Birds Canada's [R-Universe](https://birdscanada.r-universe.dev):
```R
install.packages("motus",
repos = c(birdscanada = 'https://birdscanada.r-universe.dev',
CRAN = 'https://cloud.r-project.org'))
```If you want to check out work-in-progress, you can install the development
branches (betaX and sandbox) using `remotes`.
```R
install.packages("remotes") # if don't already have it
remotes::install_github("motusWTS/motus@beta3") # the beta branch for v3+
```> Running into problems? Check out the [Troubleshooting article](https://motuswts.github.io/motus/articles/troubleshooting.html)