unit_code_to_names
takes a single unit code or vector of unit codes and returns a data frame of full unit names using a public IRMA API. For example if given the code "ROMO" the function will return "Rocky Mountain National Park".
unit_codes_to_names(unit_code)
a data frame consisting of a single column of full park names
if (FALSE) { # \dontrun{
unit_codes_to_names("ROMO")
unit_codes_to_names(c("ROMO", "GRYN"))
} # }