class Geocoder::Result::Geoapify

def symbol_hash(orig_hash)

def symbol_hash(orig_hash)
  {}.tap do |result|
    orig_hash.each_key do |key|
      next unless orig_hash[key]
      result[key.to_sym] = orig_hash[key]
    end
  end
end