Accepts a character vector of ISO country codes (e.g. `"US"`) or country names (e.g. `"United States"`) and returns the corresponding OpenAQ country IDs.
OpenAQ_countryToID(x)Integer vector of OpenAQ country IDs.
Matching is case-insensitive. If no match is found, `NA` is returned.
if (FALSE) { # \dontrun{
OpenAQ_countryToID(c("US", "Canada", "France", "Unknown"))
} # }