bioacoustica.call: Helper function to request data from BioAcoustica.

Description Usage Arguments Value Author(s) Examples

Description

This function is used (primarily but not exclusively by other package functions) to download a HTML of other object from BioAcoustica.

Usage

1

Arguments

path

The path of the content to retrieve.

Value

A string containing the HTML or other content retrieved.

Author(s)

Ed Baker

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function(path) {
  message(paste0(bioacoustica.getHandle(), path));
  download <- DrupalR::drupalr.get(bioacoustica.getHandle(), path);
  return (read.csv(text = download));
}

BioAcoustica/bioacousticaR documentation built on May 5, 2019, 3:46 p.m.