bioacoustica.listRecordings: List Recordings

Description Usage Arguments Value Author(s) Examples

Description

Function to list recordings available on BioAcoustica, optionally filtered by taxon.

Usage

1

Arguments

taxon

The BioAcoustica taxon ID to filter by.

children

If set to TRUE recordings of taxonomic children of the taxon will also be returned.

Value

String of CSV of returned data.

Author(s)

Ed Baker

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
##---- 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(taxon=NULL, children=FALSE) {
  if (is.null(taxon)) {
    taxon <- "";
  } else {
    taxon <- sub(" ", "+", taxon)
  }
  if(!children) {
    path <- paste0("/R/recordings/", taxon);
  } else {
    path <- paste0("/R/recordings-depth/", taxon);
  }
  return (bioacoustica::bioacoustica.call(path));
}

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