For some upcoming analysis I would like to get an information about how many bird occurrences are in GBIF grouped by some grid cell and month.
Being an R user I had a quick look at the vignettes from rgbif (https://cran.r-project.org/web/packages/rgbif/vignettes/rgbif.html), so my question is: is there a way to get the number of bird occurrences directly rather than having to download all bird data? If the previous is not possible, how can I download all bird occurrences within a defined spatial area?
If you’re only interested in number of occurrences, the /count endpoint would probably be your best bet. However, I don’t believe this supports geometry like grid cells.
I don´t know how the rgbif handles that, but the APIs offer facets as a parameter, then you can limit the number of observations to 0 (&limit=0), but still get the facet for the search. See more details here
Thanks for your swift and helpful replies, I am indeed only interested in numbers of occurrences. I will have a look at the links that you sent and I know where to come back to if I get stuck