## Not run:library(maps)library(sf)genus_vector <- c("Abies","Acer")temp_dir <- file.path(tempdir(),"BIEN_temp")#Set a working directoryBIEN_ranges_genus(genus_vector)BIEN_ranges_genus(genus = genus_vector, match_names_only =TRUE)BIEN_ranges_genus(genus = genus_vector, directory = temp_dir)#saves ranges to a specified working directoryBIEN_ranges_genus("Abies")BIEN_ranges_genus(genus ="Abies", directory = temp_dir)#Reading filesAbies_poly <- read_sf(dsn = temp_dir,layer ="Abies_lasiocarpa")#Plotting filesplot(Abies_poly[1])#plots the range, but doesn't mean much without any referencemap('world', fill =TRUE, col ="grey")#plots a world map (WGS84 projection), in greyplot(Abies_poly[1], col="forest green", add =TRUE)#adds the range of Abies lasiocarpa to the map# Getting data from the files (currently only species names)Abies_poly$species#gives the species name associated with "Abies_poly"## End(Not run)
See Also
Other range functions: BIEN_ranges_box(), BIEN_ranges_intersect_species(), BIEN_ranges_list(), BIEN_ranges_load_species(), BIEN_ranges_sf(), BIEN_ranges_shapefile_to_skinny(), BIEN_ranges_skinny_ranges_to_richness_raster(), BIEN_ranges_species(), BIEN_ranges_species_bulk()