get_acoustic_receivers: Get acoustic receiver data

View source: R/get_acoustic_receivers.R

get_acoustic_receiversR Documentation

Get acoustic receiver data

Description

Get data for acoustic receivers, with options to filter results.

Usage

get_acoustic_receivers(connection = con, receiver_id = NULL, status = NULL)

Arguments

connection

A connection to the ETN database. Defaults to con.

receiver_id

Character (vector). One or more receiver identifiers.

status

Character. One or more statuses, e.g. available or broken.

Value

A tibble with acoustic receiver data, sorted by receiver_id. See also field definitions. Values for owner_organization will only be visible if you are member of the group.

Examples

# Set default connection variable
con <- connect_to_etn()

# Get all acoustic receivers
get_acoustic_receivers(con)

# Get lost and broken acoustic receivers
get_acoustic_receivers(con, status = c("lost", "broken"))

# Get a specific acoustic receiver
get_acoustic_receivers(con, receiver_id = "VR2W-124070")

inbo/etn documentation built on Dec. 5, 2023, 4:17 a.m.