check_applicability_biomass_control_iiie.RdConfirm that biomass would have decayed anaerobically without the project and that collection is controlled in line with AMS-III.E requirements.
check_applicability_biomass_control_iiie(
data,
anaerobic_baseline_col = "anaerobic_baseline",
control_plan_col = "biomass_control_plan",
group_cols = NULL,
output_col = "biomass_control_applicable"
)Tibble containing applicability evidence.
Column storing indicators that the biomass would decay anaerobically in the baseline scenario.
Column storing indicators that biomass collection is controlled.
Optional character vector specifying grouping columns.
Name of the logical output column.
Tibble indicating whether biomass control evidence is documented.
applicability <- tibble::tibble(
plant_id = c("A", "B"),
anaerobic_baseline = c(TRUE, TRUE),
biomass_control_plan = c(TRUE, FALSE)
)
check_applicability_biomass_control_iiie(applicability, group_cols = "plant_id")
#> # A tibble: 2 × 2
#> plant_id biomass_control_applicable
#> <chr> <lgl>
#> 1 A TRUE
#> 2 B FALSE