For some addresses that I attempt to geocode, google returns inappropriately inconclusive results.
The following is an example, but it is not an isolated incident. The first returned result is the exact match, however google flags it as a "partial_match":
Street address: 16160 Frederick Rd City: Gaithersburg State: MD Zip code: 20877
My issue here is in determining which is the correct match. In this case, the "partial match" flag is not useful because it is set to "true" on all matching results. In this case, I could test for equality on the street address, city, state, and/or zip, however, if there is even a small difference in spelling between what I send google, and what I get as a response, that will not work either. (Example: "Road" vs "Rd").
Am I doing something wrong here? Is there a conclusive way to distinguish the exact match that I am unfamiliar with?
Thanks!