Skip to contents

Register aedes dataset adapters for use with coconatfly.

Usage

register_aedes_coconat(showerror = TRUE)

Arguments

showerror

Logical; when FALSE, return invisibly if dependencies are missing.

Value

Invisible NULL.

Details

The aedes dataset is continually evolving. You three two main choices for how to handle this.

  1. use a specific numeric version (aka materialisation) of the segmentation.

  2. use the latest materialisation version (version='latest')

  3. map ids to the current time (version='now')

Option 2 is the default since this can make queries somewhat faster and stable but note that 'latest' can be several days old.

Examples

if (FALSE) { # \dontrun{
register_aedes_coconat()
cf_meta(cf_ids(aedes="/class:MBON.*"))
aedes_set_version('now')
cf_meta(cf_ids(aedes="/class:MBON.*"))
} # }