R/see_brazil_biomes.R

Defines functions see_brazil_biomes

Documented in see_brazil_biomes

#' Function to see the Brazilian biomes available in cropZoning package and how we can use it in the loadROI function
#'
#' @description This fuction will show the biomes available in the package and how we can call each biome polygon.
#' @examples
#' \dontrun{
#' 
#' see_brazil_biomes()
#' }
#' @return Returns a character strings listing the biomes available to run the cropZoning package.
#' @export


see_brazil_biomes <- function(){
  a<- c("Caatinga = 1", "Cerrado = 2", "Pantanal = 3", "Pampa = 4", "Amazonia = 5", "Mata Atlantica = 6")
  print("Use the text format or the corresponding number:")
  return(a)
}
FilgueirasR/cropZoning documentation built on Feb. 16, 2025, 11:42 a.m.