Created
September 6, 2012 14:32
-
-
Save MichaelAstreiko/3656883 to your computer and use it in GitHub Desktop.
Find similar words
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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