Question: What did the company score for NAT.B14 Scope 1 and 2 greenhouse gas emissions in the Nature Benchmark?
Answer:
2.5
World Benchmarking Alliance
2022
Unverified - Added by Steward

score = (x) -> 
  if x == "Yes"
    10
  else
    0
  
weights = [0.25, 0.25, 0.25, 0.25]
scope_1_n_2_ghg_emissions = [reductions, targets, targets_reporting, alignment]

weights.reduce((weighted_sum, weight, index) -> 
              weighted_sum + weight*score(scope_1_n_2_ghg_emissions[index])
             , 0)

Comments