View source: R/02-vegetation-indices.R
| list_vegetation_indices | R Documentation |
Returns detailed information about all 40+ available vegetation indices including formulas, required bands, applications, and references.
list_vegetation_indices(
category = "all",
application = "all",
detailed = FALSE
)
category |
Filter by category: "all", "basic", "enhanced", "specialized", "stress" |
application |
Filter by application: "general", "agriculture", "forestry", "stress", "water" |
detailed |
Return detailed information including formulas and references |
Data frame with vegetation index information
# 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")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.