Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/burgerga/icytracks

R package to read icy track files
https://github.com/burgerga/icytracks

file-format icy r tracking

Last synced: 4 days ago
JSON representation

R package to read icy track files

Awesome Lists containing this project

README

        

---
output: github_document
---

```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```

# icytracks

Reads the '.xls' files generated by the Icy 'Export Tracks to XLS' Track
Processor and convert it to a data.frame.

Example usage:

```{r, eval=F}
library(icytracks)
data <- read.icy.track.xls('~/icytracks.xls')
head(data, 10)
```

```{r, echo=F}
library(icytracks)
data <- read.icy.track.xls('~/stack/test/icy_manual_tracking/20121120_p02/tracks.xls')
head(data, 10)
```

## Installation

With the `devtools` package installed:

```{r, eval=F}
install_github('burgerga/icytracks')
```