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

score = (x) -> 
  if x == "Yes"
    10
  else
    0
  
weights = [0.2, 0.2, 0.2, 0.2, 0.2]
scope_3_ghg_emissions = [disclosure, reductions_disclosure, targets, targets_reporting, alignment]

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

Comments