Question: What did the company score for NAT.B01 Assessments of impacts on nature in the Nature Benchmark?
Answer:
0
World Benchmarking Alliance
2022
Unverified - Added by Steward

score = (x) -> 
  if x == "Yes"
    10
  else if x == "Partially"
    5
  else
    0

weights = [0.25, 0.125, 0.125, 0.25, 0.25]
assessments_of_impacts_on_nature = [impacts_on_nature, impacts_on_upstream_value_chain, impacts_on_downstream_value_chain, impacts_on_stakeholder, impacts_on_nature_including_biodiversity]

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

Comments