Merge pull request #1292 from philipperemy/patch-1

Add ARVI formula
pull/1293/head
Piero Toffanin 2023-02-21 10:00:48 -05:00 zatwierdzone przez GitHub
commit c40f34cc2a
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 5 dodań i 0 usunięć

Wyświetl plik

@ -105,6 +105,11 @@ algos = {
'help': _('Enhanced Vegetation Index is useful in areas where NDVI might saturate, by using blue wavelengths to correct soil signals.'),
'range': (-1, 1)
},
'ARVI': {
'expr': '(N - (2 * R) + B) / (N + (2 * R) + B)',
'help': _('Atmospherically Resistant Vegetation Index. Useful when working with imagery for regions with high atmospheric aerosol content.'),
'range': (-1, 1)
},
'Thermal C': {
'expr': 'L',
'help': _('Thermal temperature in Celsius degrees.')