NASA-DEVELOP/dnppy

Wrong SAVI formula in surface_temp.py

Closed this issue · 1 comments

in dnppy/dnppy/landsat/surface_temp.py

savi = ((1 + L) * (nir - red))/(L + (nir + red))

instead of :

savi = ((1 + L) * (nir - red))/(L + (nir - red))

Regards,
Patrick

Thanks for the heads up.
Fixed with 291395e