class Geocoder::Result::Geocodio

def country

def country
  # Geocodio supports US and Canada, however they don't return the full
  # country name.
  if country_code == "CA"
    "Canada"
  else
    "United States"
  end
end