Update formulas.py

Fix broken syntax on lines 23-24
pull/1082/head
Saijin-Naib 2021-10-28 11:31:20 -04:00 zatwierdzone przez GitHub
rodzic aa306dc94f
commit 7692c30053
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -20,8 +20,8 @@ algos = {
'help': _('Enhanced Normalized Difference Vegetation Index is like NDVI, but uses Blue and Green bands instead of only Red to isolate plant health.')
},
'vNDVI':{
'expr': '0.5268*((R ^ -0.1294) * (G ^ 0.3389) * (B ^ -0.3118))
'help': _('Visible NDVI is an un-normalized index for RGB sensors using constants derived from citrus, grape, and sugarcane crop data.")
'expr': '0.5268*((R ^ -0.1294) * (G ^ 0.3389) * (B ^ -0.3118))',
'help': _('Visible NDVI is an un-normalized index for RGB sensors using constants derived from citrus, grape, and sugarcane crop data.')
},
'VARI': {
'expr': '(G - R) / (G + R - B)',