
Get comprehensive list of available vegetation indices
Source:R/02-vegetation-indices.R
list_vegetation_indices.RdReturns detailed information about all 40+ available vegetation indices including formulas, required bands, applications, and references.
Examples
# \donttest{
# All available indices
all_indices <- list_vegetation_indices()
# Only stress detection indices
stress_indices <- list_vegetation_indices(category = "stress")
# Detailed information with formulas
detailed_info <- list_vegetation_indices(detailed = TRUE)
# Agricultural applications only
ag_indices <- list_vegetation_indices(application = "agriculture")
# }