# NOT RUN {
res1 <- occ_search(taxonKey=9206251, limit=2)
(xx <- gbif_citation(res1))
res2 <- occ_search(datasetKey='7b5d6a48-f762-11e1-a439-00145eb45e9a',
return='data', limit=20)
(xx <- gbif_citation(res2))
# if no datasetKey field included, we attempt to identify the dataset
## key field included - still works
res3 <- occ_search(taxonKey=9206251, fields=c('name','basisOfRecord','key'),
limit=20)
(xx <- gbif_citation(res3))
## key field not included - errors
# res3 <- occ_search(taxonKey=9206251, fields=c('name','basisOfRecord','
# protocol'), limit=20)
# (xx <- gbif_citation(res3))
# character class inputs
## pass in a dataset key
gbif_citation(x='0ec3229f-2b53-484e-817a-de8ceb1fce2b')
## pass in an occurrence key
gbif_citation(x='1425976049')
# pass in an occurrence key as a numeric (won't work for a dataset key)
gbif_citation(x=1425976049)
# Downloads
## occ_download_get()
# d1 <- occ_download("country = BG", "year <= 2011")
# key <- "0000122-171020152545675"
# occ_download_meta(key)
# d1 <- occ_download_get(key, overwrite = TRUE)
# gbif_citation(d1)
## occ_download_meta()
# key <- "0000122-171020152545675"
# res <- occ_download_meta(key)
# gbif_citation(res)
# }
Run the code above in your browser using DataLab