Skip to content

Instantly share code, notes, and snippets.

@MichaelAstreiko
Created September 6, 2012 14:32
Show Gist options
  • Save MichaelAstreiko/3656883 to your computer and use it in GitHub Desktop.
Save MichaelAstreiko/3656883 to your computer and use it in GitHub Desktop.
Find similar words
import uk.ac.shef.wit.simmetrics.similaritymetrics.Soundex
boolean isSamePlace = false
Soundex soundexAlgorithm = new Soundex()
if(distanceBetweenVenues(place1, place2) < 200 && soundexAlgorithm.getSimilarity(placeName1, placeName2) > 0.98) {
isSamePlace = true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment