Aggregates monitoring data to compute total emissions accounting for ACM0001 landfill gas projects, including methane destruction reported in tonnes and tonnes CO2e.

estimate_emission_reductions_acm0001(monitoring_data)

Arguments

monitoring_data

Landfill gas monitoring dataset with ACM0001-required columns.

Value

A tibble of total methane generation, captured methane, baseline, project, leakage, methane destruction, and emission reductions.

Examples

data <- simulate_acm0001_dataset(4, seed = 99)
estimate_emission_reductions_acm0001(data)
#> # A tibble: 1 × 8
#>   total_methane_generation_m3 total_methane_captured_m3 total_baseline_emissions
#>                         <dbl>                     <dbl>                    <dbl>
#> 1                      18613.                     4518.                     336.
#> # ℹ 5 more variables: total_project_emissions <dbl>,
#> #   total_leakage_emissions <dbl>, total_methane_destroyed_t <dbl>,
#> #   total_methane_destroyed_co2e <dbl>, total_emission_reductions <dbl>