Skip to contents

Shows the valid countries and their codes. The codes are used in the get_species() function to filter species by country. Based on the Catalogue Web Service documentation.

Usage

countries()

Value

A tibble with 2 columns:

  • country: The full name of the country.

  • country_code: The abbreviations to be used in the get_species(country_code = ) function.

See also

Other misc functions: environments(), ranks(), regions()

Examples

countries()
#> # A tibble: 28 × 2
#>    country  country_code
#>    <chr>    <chr>       
#>  1 Austria  AT          
#>  2 Belgium  BE          
#>  3 Bulgaria BG          
#>  4 Croatia  HR          
#>  5 Cyprus   CY          
#>  6 Czechia  CZ          
#>  7 Denmark  DK          
#>  8 Estonia  EE          
#>  9 Finland  FI          
#> 10 France   FR          
#> # ℹ 18 more rows