nbn_config: Get or set configuration options that control NBN4R behaviour

Description Usage Arguments Value References Examples

Description

Get or set configuration options that control NBN4R behaviour

Usage

1
2
3

Arguments

...

Options can be defined using name=value. Valid options are:

  • reset: nbn_config("reset") will reset the options to their default values

  • caching string: caching can be "on" (results will be cached, and any cached results will be re-used), "refresh" (cached results will be refreshed and the new results stored in the cache), or "off" (no caching, default).

  • cache_directory string: the directory to use for the cache. By default this is a temporary directory, which means that results will only be cached within an R session and cleared automatically when the user exits R. The user may wish to set this to a non-temporary directory for caching across sessions. The directory must exist on the file system.

  • verbose logical: should NBN4R give verbose output to assist debugging? (default=FALSE)

  • warn_on_empty logical: should a warning be issued if a request returns an empty result set? (default=FALSE)

  • user_agent string: the user-agent string used with all web requests to the NBN servers. Default = "NBN4R" with version number

  • text_encoding string: text encoding assumed when reading cached files from local disk (default="UTF-8")

  • download_reason_id numeric or string: the "download reason" required by some NBN services, either as a numeric ID (currently 0–11) or a string (see nbn_reasons() for a list of valid ID codes and names). By default this is NA. Some NBN services require a valid download_reason_id code, either specified here or directly to the associated R function.

Value

For nbn_config(), a list of all options. When nbn_config(...) is called with arguments, nothing is returned but the configuration is set.

References

https://api.nbnatlas.org/

https://layers.nbnatlas.org/layers/ this will eventually move to the api link

Invoking nbn_config() with no arguments returns a list with the current values of the options.

nbn_reasons() returns a data frame with information describing the valid options for download_reason_id

Examples

1
2
3
4
5
6
7
8
## Not run: 
 nbn_config()
 nbn_config(caching="off")
 nbn_config()
 nbn_config(download_reason_id=0,verbose=TRUE)
 nbn_config("reset")

## End(Not run)

fozy81/NBN4R documentation built on May 19, 2019, 8:22 a.m.