The R package EchoviewR - a free interface between Echoview (R) and R using COM scripting.
Copyright and Licence
Copyright (C) 2015 Lisa-Marie Harrison, Martin Cox, Georg Skaret and Rob Harcourt.
This file is part of EchoviewR.
EchoviewR is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
EchoviewR is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with EchoviewR. If not, see <http://www.gnu.org/licenses/>.
This package is open for community development and we encourage users to extend the package as they need. We are not liable for any losses when using EchoviewR.
If using EchoviewR, please cite as:
citation('EchoviewR')
Currently, EchoviewR
has quite a few dependencies, something we are hoping to rectify. Meanwhile, you will need to install the following R
packages:
fields
,sp
,geosphere
,maptools
,RDCOMClient
and rgeos
You can install all these packages with the following R
code:
install.packages(c('fields','sp','geosphere','maptools','RDCOMClient','rgeos'))
You are then ready to install the EchoviewR
package directly from github using devtools
(Wickham & Chang, 2016):
if (!requireNamespace("devtools",quietly=TRUE)) install.packages("devtools")
devtools::install_github('AustralianAntarcticDivision/EchoviewR')
You should then be ready to work with EchoviewR:
library(EchoviewR)
Currently there are two vignettes that describe the automation of reading data into Echoview (R), read_data_vignette.pdf
and the automation of schools detection in Echoview (R) schoolsDetection.pdf
. Both the vignettes and examples in the function help use data available at the Australian Antarctic Division Data Centre [doi: http://dx.doi.org/10.4225/15/54CF081FB955F].
The authors would like to thank Echoview (R) for their help and support during the development of this R package.
Echoview (R) is a registered trademark of Echoview Software Pty Ltd. Website: www.echoview.com/
Hadley Wickham and Winston Chang (2016). devtools: Tools to Make Developing R Packages Easier. R package version 1.12.0. https://CRAN.R-project.org/package=devtools