Skip to contents

Returns the layers needed for a given project template, grouped by download source type (bcdata, fwa, aws). Reads from the gq registry if available, falling back to the package's .txt files in inst/lookups/ if gq is not installed.

Usage

rfp_project_layers(template)

Arguments

template

Character. Template name (e.g., "bcfishpass_mobile"). See rfp_project_templates() for available templates.

Value

A data.frame with columns: group, subgroup, layer_key, source_layer, source_type, order.

Examples

if (FALSE) { # \dontrun{
rfp_project_layers("bcfishpass_mobile")

# Filter to just bcdata layers
layers <- rfp_project_layers("bcfishpass_mobile")
layers[layers$source_type == "bcdata", ]
} # }