Open Range is a database containing Open Access species range maps and associated metadata. The database is currently in a pre-alpha, proof-of-concept stage. While the methods underlying the range maps are documented in the metadata, and the maps follow reasonable best practices, they have not been peer-reviewed. They are provided to show a working example of what could be done with an Open Access range database, and to provide an example of what the underlying database might look like. The maps should not be used without critical evaluation.
The maps currently contained in the Open Range database are available with a CC-BY license, but we note that additional maps using alternative licenses may be applied in the future.
The easiest way to access the species range maps is by querying a species name.
library(OpenRange) pcontorta <- OpenRange_load_species(species = "Pinus contorta") plot(pcontorta[2])
This is a bit cumbersome, but keep in mind this is a pre-alpha version. For now, you can use the function OpenRange_get_stats
library(tidyverse) # Grab the stats model_stats <- OpenRange_get_stats() # Reformat them into a single table model_stats_wide <- bind_rows(model_stats$rangebagging %>% mutate(algorithm = "rangebagging"), model_stats$ppm %>% mutate(algorithm = "ppm"), model_stats$points %>% mutate(algorithm = "points")) # Get relevant model stats model_stats_wide %>% filter(model_id == pcontorta$model_id)->test test %>% select(cv_mean_train_npresence,cv_mean_test_n_presence,cv_mean_test_auc,cv_mean_train_auc)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.