vote up 4 vote down star
1

I figure this problem is easier than just a regular spell checker since the list of U.S cities is small compared to all known English words.

Anyhow, here's the problem: I have text files with full of city names; some of which are spelled correctly and some which aren't.

What kind of algorithm can I use to correct all the misspellings of city names?

flag

Could you post an example? Correct name and samples of incorrect name of the same city, maybe? – shahkalpesh Nov 5 '08 at 3:41

5 Answers

vote up 7 vote down check

Do you actually need to correct the misspellings or just flag them as with a normal spell checker? If the latter, you just need to obtain a list of correct spellings and make sure each name is the same as one in your list.

If you want to actually correct them, you probably want to use the concept of edit distance to compare the similarity of misspelled strings to those in your reference list. Then you can replace the misspelled word with the closest match. You may also want to handle the possibility that the intended city is not in your list.

The Levenshtein distance Wikipedia article is another good resource.

link|flag
I need to correct them. – Esteban Araya Nov 5 '08 at 3:42
Yes, I think the edit distance idea is the right approach for this. That's the one I headed down on when I started this anyhow. – Esteban Araya Nov 5 '08 at 4:47
vote up 2 vote down

The trick is knowing which city the name actually refers to and how that city name is correctly spelt. It's not the same as just checking english words.

What's the real task you're trying to solve? Are you processing address lists? You shouldn't be writing your own tools for that: there is an entire industry devoted to this deceptively simple task. :)

I have to do this for the subscription lists for The Perl Review. I've become quite familiar with the webservices for the various post offices throughout the world. You can often go to a postal service website to get a canonical form of an address. There are geocoding tools that can get you the same data.

link|flag
You're right, it's deceptively tricky. Now that I've been playing around with it, I've also noticed that people sometimes abbreviate city names. Writing this is a great excercise in DP; I'm certain one can achiever fairly decent results w/o too much effort. – Esteban Araya Nov 5 '08 at 4:49
vote up -1 vote down

There are lists on the web of commonly misspelled city names (like Pittsburg**h**). Other than that I am with Jeremy. You just gotta find the city names dataset, you might want to try the USGS. Zillow has neighbourhood data you might be able to use that.

link|flag
vote up 2 vote down

First load the correct city names into an array, then loop through the city names in your file. Check if the current city name is spelled right by seeing if it's in the array of correct names. If it isn't in the array, try comparing the Soundex or Metaphone value of the misspelled word with the words in the array of correct names to find the correct way of spelling it.

link|flag
vote up -2 vote down

If the same city name occurs more than once in the file you can use the number of occurrence of each city name and flag the one that appears only once.

link|flag
It is possible that a city appears only once and correctly spelled. – Esteban Araya Nov 5 '08 at 3:43
... or is misspelled, the same way, more than once. – Brad Gilbert Nov 5 '08 at 4:53
Esteban and Brad : Of course, you are right but if the only things you've got to validate yourself is the file you have to rely on occurence to calculate the statistic – Julien Grenier Nov 11 '08 at 17:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.