query_locations.RdRetrieves information on Steam's country, region, and city codes.
query_locations queries the storefront API and can drill down all
Steam location levels, while get_country_list can only provide
information on the country level.
query_locations(country = NULL, region = NULL)
get_country_list(language = "english")query_locationsA dataframe with country code, name, and whether the location can be further subdivided into states or cities.
get_country_listA dataframe containing country code and country name.
if (FALSE) { # \dontrun{
# get country codes
query_locations()
# get region codes of Germany
query_locations(country = "DE")
# get city codes of Baden-Wurttemberg, Germany
query_locations(country = "DE", region = "01")
# get localized country names
get_country_list(language = "german")
} # }