You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I appreciate the work you have put into Awesome Spectral Indices and this package!
While working on this short guide for my students, I thought that it might be a good idea to separate bands and constants in SpectralIndex objects. Meaning that when someone calls spyndex.indices.EVI.bands, for example, it should not return ['g', 'N', 'R', 'C1', 'C2', 'B', 'L'] but only ['N', 'R', 'B']. The constants could be returned separately with spyndex.indices.EVI.constants.
I think it might otherwise lead to confusion, especially for inexperienced users. In the guide I've mentioned, I tried to clear this up by using list comprehension to separate them.
The text was updated successfully, but these errors were encountered:
Hi @davemlz,
I appreciate the work you have put into Awesome Spectral Indices and this package!
While working on this short guide for my students, I thought that it might be a good idea to separate bands and constants in
SpectralIndex
objects. Meaning that when someone callsspyndex.indices.EVI.bands
, for example, it should not return['g', 'N', 'R', 'C1', 'C2', 'B', 'L']
but only['N', 'R', 'B']
. The constants could be returned separately withspyndex.indices.EVI.constants
.I think it might otherwise lead to confusion, especially for inexperienced users. In the guide I've mentioned, I tried to clear this up by using list comprehension to separate them.
The text was updated successfully, but these errors were encountered: