Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/burgerga/icytracks
- Owner: burgerga
- License: gpl-3.0
- Created: 2016-11-08T12:02:08.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-11-08T13:35:11.000Z (about 8 years ago)
- Last Synced: 2024-11-15T15:44:23.180Z (2 months ago)
- Topics: file-format, icy, r, tracking
- Language: R
- Size: 17.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
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')
```