How to Customize Animal Observer and convert collected data to CSV

We created an application named Animal Observer Toolbox to allow you to generate the three JSON files needed to customize your user interface and convert Animal Observer output file to CSV. Although you do not need to have any prior knowledge of the R language to run AO Toolbox, you will need a recent version of the software R to be able to run this application. R can be downloaded here. Make sure R is installed on every computer you will use to set up Animal Observer and to download collected data. You will also need package 'shiny' to be installed. To do so, just open R and type install.packages('shiny') in the R console.

You will need an internet connection the first time you run the toolbox because R will install a few packages in the background ('rjson', 'visNetwork', 'rhandsontable', 'markdown', 'RPostgreSQL'). To launch AOToolbox, just type:

library(shiny)
runGitHub("FosseyFund/AOToolBox-public")

The necessary packages will then automatically be downloaded and the toolbox will start in your default internet browser. Follow the instructions in the different tabs to set up your user interface and convert the data you've collected to a set of csv files. If you use RStudio to open AO Toolbox, make sure you click 'Open in Browser' in the RStudio html window.


Once you have launched the Toolbox using the above command once, you can run it even without an internet access (because the packages are now on your hard drive) using the following procedure:

library(shiny)
runApp('AOToolBox-master')

  • Follow the instructions in AO Toolbox to customize Animal Observer and convert the output .dat file to the Excel-compatible CSV format.
  • Have fun!