rinat icon indicating copy to clipboard operation
rinat copied to clipboard

Error in get_inat_obs for taxa having large number of records

Open Cactusolo opened this issue 5 years ago • 2 comments

Following code gives error

test <- get_inat_obs(taxon_name = "Tracheophyta",maxresults = 100)
Error in get_inat_obs(taxon_name = "Tracheophyta", maxresults = 100) : 
  Your search returned too many results, please consider breaking it up into smaller chunks by year or month

but both of the following produce desired results.

test <- get_inat_obs(taxon_name = "Kirkiaceae",maxresults = 100)
test <- get_inat_obs(taxon_name = "Danaus",maxresults = 100)

Cactusolo avatar Apr 05 '19 18:04 Cactusolo