gustavobio/flora

Search using ID?

Closed this issue · 2 comments

jaum20 commented

is there a way to get the data using the ID instead of plant names?

Hi @jaum20

There isn't a function to do so, but this could be easily achieved with a workaround:

library(flora)
library(dplyr)

flora:::all.taxa %>%
  filter(id %in% c(606070, 139067, 109768))

You can then use get.taxa() to fix synonyms if needed.

jaum20 commented

Thank you