This package fetches and summarizes marine species distributions based on OBIS, GBIF, and WoRMS. It also calculates thermal envelopes using Bio-ORACLE sea surface temperature data.
remotes::install_github("iobis/rspeedy")
library(speedy)
scientificname <- "Didemnum perlucidum"
didemnum <- get_dist(scientificname = scientificname)
plot_dist(didemnum)
scientificname <- "Eriocheir sinensis"
eriocheir <- get_dist(scientificname = scientificname)
plot_dist(eriocheir)
plot_kd(didemnum$envelope)
plot_kd(eriocheir$envelope)
pl_eriocheir <- calculate_plausibility(eriocheir)
plot_plausibility(pl_eriocheir)