## Not run:library(sf)library(maps)#a convenient source of mapsspecies_vector <- c("Abies_lasiocarpa","Abies_amabilis")BIEN_ranges_species(species_vector)BIEN_ranges_species(species_vector, match_names_only =TRUE)temp_dir <- file.path(tempdir(),"BIEN_temp")#Set a working directoryBIEN_ranges_species(species = species_vector, directory = temp_dir)#saves ranges to a temporary directoryBIEN_ranges_species("Abies_lasiocarpa")BIEN_ranges_species("Abies_lasiocarpa", directory = temp_dir)#Reading filesAbies_poly <- st_read(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 and a BIEN ID field)Abies_poly$species#gives the species name associated with "Abies_poly"## End(Not run)#'
See Also
Other range functions: BIEN_ranges_box(), BIEN_ranges_genus(), 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_bulk()