Skip to content

Commit

Permalink
bNIRv, EVIv, sNIRvLSWI, sNIRvNDPI, sNIRvSWIR (#55), sNIRvNDVILSWIP, s…
Browse files Browse the repository at this point in the history
…NIRvNDVILSWIS
  • Loading branch information
davemlz committed May 16, 2024
1 parent 12120df commit f6ebaa0
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions src/indices.py
Original file line number Diff line number Diff line change
Expand Up @@ -2115,5 +2115,68 @@ class SpectralIndices(BaseModel):
date_of_addition="2024-04-08",
contributor="https://github.com/gagev",
),
bNIRv=SpectralIndex(
short_name="bNIRv",
long_name="Blue Near-Infrared Reflectance of Vegetation",
formula="((N - B)/(N + B)) * N",
reference="https://doi.org/10.22541/essoar.171561872.22414664/v1",
application_domain="vegetation",
date_of_addition="2024-05-16",
contributor="https://github.com/davemlz",
),
EVIv=SpectralIndex(
short_name="EVIv",
long_name="Enhanced Vegetation Index of Vegetation",
formula="2.5 * ((N - R)/(N + 6 * R - 7.5 * B + 1.0)) * N",
reference="https://doi.org/10.22541/essoar.171561872.22414664/v1",
application_domain="vegetation",
date_of_addition="2024-05-16",
contributor="https://github.com/davemlz",
),
sNIRvLSWI=SpectralIndex(
short_name="sNIRvLSWI",
long_name="SWIR-enhanced Near-Infrared Reflectance of Vegetation for LSWI",
formula="((N - S2)/(N + S2)) * N",
reference="https://doi.org/10.22541/essoar.171561872.22414664/v1",
application_domain="vegetation",
date_of_addition="2024-05-16",
contributor="https://github.com/davemlz",
),
sNIRvNDPI=SpectralIndex(
short_name="sNIRvNDPI",
long_name="SWIR-enhanced Near-Infrared Reflectance of Vegetation for NDPI",
formula="(N - (alpha * R + (1.0 - alpha) * S2))/(N + (alpha * R + (1.0 - alpha) * S2)) * N",
reference="https://doi.org/10.22541/essoar.171561872.22414664/v1",
application_domain="vegetation",
date_of_addition="2024-05-16",
contributor="https://github.com/davemlz",
),
sNIRvSWIR=SpectralIndex(
short_name="sNIRvSWIR",
long_name="SWIR-enhanced Near-Infrared Reflectance of Vegetation",
formula="((N - R - S2 ** 2.0)/(N + R + S2 ** 2.0)) * N",
reference="https://doi.org/10.22541/essoar.171561872.22414664/v1",
application_domain="vegetation",
date_of_addition="2024-05-14",
contributor="https://github.com/MartinuzziFrancesco",
),
sNIRvNDVILSWIP=SpectralIndex(
short_name="sNIRvNDVIxLSWI",
long_name="SWIR-enhanced Near-Infrared Reflectance of Vegetation for the NDVI-LSWI Product",
formula="((N - R)/(N + R)) * ((N - S2)/(N + S2)) * N",
reference="https://doi.org/10.22541/essoar.171561872.22414664/v1",
application_domain="vegetation",
date_of_addition="2024-05-16",
contributor="https://github.com/davemlz",
),
sNIRvNDVILSWIS=SpectralIndex(
short_name="sNIRvNDVIxLSWI",
long_name="SWIR-enhanced Near-Infrared Reflectance of Vegetation for the NDVI-LSWI Sum",
formula="(((N - R)/(N + R)) + ((N - S2)/(N + S2))) * N",
reference="https://doi.org/10.22541/essoar.171561872.22414664/v1",
application_domain="vegetation",
date_of_addition="2024-05-16",
contributor="https://github.com/davemlz",
),
)
)

0 comments on commit f6ebaa0

Please sign in to comment.