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
Is your feature request related to a problem? Please describe.
Are there additional vegetation indices supported here that we could add to plantcv's spectral_index subpackage?
Supported Indices not already in pcv
"RENDVI": "(msi.rededge - msi.red) / (msi.rededge + msi.red)",
"GNDVI": "(msi.nir - msi.green) / (msi.nir + msi.green)",
"ENDVI": "(msi.nir + msi.green - 2*msi.blue) / (msi.nir + msi.green + 2*msi.blue)",
"NNIR": "msi.nir / (msi.nir + (msi.rededge + msi.green))",
"NGRDI": "((msi.green) - (msi.red)) / ((msi.green) + (msi.red))",
"NLI": "((msi.nir**2) - msi.red) / ((msi.nir**2) + msi.red)",
"DVI": "msi.nir - msi.red",
"RDVI": "(msi.nir - msi.red) / ((msi.nir + msi.red)**(1/2))",
"MDD": "(msi.nir - msi.rededge) - (msi.rededge - msi.green)",
"HUE": "np.arctan((2 * (msi.red - msi.green - msi.blue)) / (30.5 * (msi.green - msi.blue)))"```
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Additional context**
Add any other context, sample data, or code relevant to the feature request here.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Are there additional vegetation indices supported here that we could add to plantcv's spectral_index subpackage?
Supported Indices not already in pcv
The text was updated successfully, but these errors were encountered: