pkgdown/analytics.html

Skip to contents

Summarize which tags are discoverable in a GeoPressureTemplate project from config.yml, data/interim, and data/raw-tag. Use this before importing a project to see which tags are available from each source and, optionally, which workflow objects are present in interim files.

During automatic discovery, names starting with "_" are treated as private project entries and skipped. This applies to config keys, interim files, raw-tag folders, and files inside raw-tag folders. Empty raw-tag folders are also skipped, so in_raw_tag = TRUE means the folder contains at least one non-ignored file.

Usage

status_geopressuretemplate(directory = ".", read_interim = TRUE)

Arguments

directory

Path to the GeoPressureTemplate directory.

read_interim

Logical. If TRUE, read interim .RData files and add columns for selected saved objects and tag status. If FALSE, only file discovery is performed.

Value

A tibble::tibble() with one row per tag and columns:

  • tag_id: tag identifier;

  • in_config, in_interim, in_raw_tag: whether the tag was found in each project source;

  • when read_interim = TRUE, interim_* columns indicating which workflow objects are saved in the interim file, plus tag_status from GeoPressureR::tag_status() when a saved tag object is available.

Details

[Experimental]

Examples

if (FALSE) { # \dontrun{
status_geopressuretemplate()
status_geopressuretemplate(read_interim = FALSE)
} # }