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)
}

Try the cropZoning package in your browser

Any scripts or data that you put into this service are public.

cropZoning documentation built on Oct. 11, 2023, 1:06 a.m.