Reads the '.xls' files generated by the Icy 'Export Tracks to XLS' Track Processor and convert it to a data.frame.
Example usage:
library(icytracks)
data <- read.icy.track.xls('~/icytracks.xls')
head(data, 10)
#> track t x y z
#> 1 0 0 383.533073929961 598.622568093385 0
#> 2 0 1 382.237354085603 598.622568093385 0
#> 3 0 2 379.645914396887 607.692607003891 0
#> 4 0 3 380.941634241245 610.284046692607 0
#> 5 0 4 374.463035019455 611.579766536965 0
#> 6 0 5 378.350194552529 608.988326848249 0
#> 7 0 6 378.350194552529 615.466926070039 0
#> 8 0 7 380.399088411072 607.919110557647 0
#> 9 0 8 379.949444098529 607.019821932562 0
#> 10 0 9 375.00335666056 610.616976432903 0
With the devtools
package installed:
install_github('burgerga/icytracks')