Skip to contents

List MUDAB stations

Usage

mudab_stations(
  filter = NULL,
  range = NULL,
  orderby = NULL,
  safe = TRUE,
  refresh = FALSE
)

Arguments

filter

Optional filter definition.

range

Optional range specification.

orderby

Optional ordering specification.

safe

Logical; if TRUE (default), apply rate-limiting and cache GET responses to tools::R_user_dir("bunddev", "cache").

refresh

Logical; if TRUE, ignore cached responses and re-fetch from the API (default FALSE).

Value

A tibble with one row per measurement station and columns:

metadataid

Integer. Metadata identifier.

STATNAME_ST

Character. Station name.

NAME_PS

Character. Project station name.

STATIONTYPE_ST

Character. Station type.

COMPT_DS

Character. Compartment code (BL, CW, CS, or CF).

Details

Returns measurement stations from the MUDAB database. API documentation: https://mudab.api.bund.dev.

Examples

if (FALSE) { # \dontrun{
mudab_stations(range = list(from = 0, count = 5))
} # }