These functions query IntChron to list the available databases ('hosts') or countries (optionally filtering by host).
intchron_hosts() intchron_countries(hosts = NA)
hosts | Vector of databases to query (for list of available countries).
Leave |
---|
A tibble
of available hosts or countries.
Other functions for querying IntChron:
intchron()
# List available hosts intchron_hosts()#> # A tibble: 5 x 2 #> host database #> <chr> <chr> #> 1 egyptdb Egyptian Radiocarbon Database #> 2 intimate INTIMATE Database #> 3 nrcf NERC Radiocarbon Facility (Oxford) #> 4 oxa Oxford Radiocarbon Accelerator Unit #> 5 sadb Southern Africa Radiocarbon Database# List available countries intchron_countries()#> # A tibble: 109 x 1 #> country #> <chr> #> 1 Albania #> 2 Algeria #> 3 Andorra #> 4 Angola #> 5 Antarctica #> 6 Argentina #> 7 Armenia #> 8 Australia #> 9 Austria #> 10 Bahrain #> # … with 99 more rows#> # A tibble: 13 x 2 #> host country #> <chr> <chr> #> 1 intimate "" #> 2 intimate "France" #> 3 intimate "Greenland" #> 4 intimate "Ireland" #> 5 intimate "Italy" #> 6 intimate "Norway" #> 7 intimate "Romania" #> 8 intimate "Slovenia" #> 9 intimate "Switzerland" #> 10 intimate "UK" #> 11 egyptdb "Egypt" #> 12 egyptdb "Palestinian Territory" #> 13 egyptdb "Sudan"