Question: What did the company score for NAT.B10 Water quality in the Nature Benchmark?
Answer:
2.5
World Benchmarking Alliance
NAT.B10Water quality
2022
Unverified - Added by Steward

score = (x) -> 
  if x == "Yes"
    10
  else
    0
  
weights = [0.25, 0.25, 0.25, 0.25]
water_quality = [pressure_reduction, discharge_water_quality, reporting, pressure_reduction_targets]

weights.reduce((weighted_sum, weight, index) -> 
              weighted_sum + weight*score(water_quality[index])
             , 0)
discharge_water_quality
Yes
pressure_reduction_targets
No

Comments