R/ReadSpeciesList.R

Defines functions ReadSpeciesList

Documented in ReadSpeciesList

ReadSpeciesList <- function(TerrADat_Path, Internal){
  
  if(!Internal){
    SpeciesList<- sf::st_read(dsn = TerrADat_Path ,  
                              layer = "tblStateSpecies")}
  if(Internal){
    SpeciesList <- SpeciesList
  }
  
  SpeciesList <- SpeciesList %>% dplyr::rename(Species = SpeciesCode) 
  return(SpeciesList)
  
}
R-Burke/SiteSummaryTool documentation built on Oct. 15, 2020, 8:21 p.m.