Street Address to Lat/Long Conversion

Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.

Moderator: General Moderators

Post Reply
User avatar
ATLChris
Forum Newbie
Posts: 15
Joined: Mon Feb 09, 2009 6:21 am
Location: Atlanta, GA

Street Address to Lat/Long Conversion

Post by ATLChris »

I am working on a personal project that requires users to enter an address. Then the address will get converted into Latitude and Longitude values which will then be saved into our local database for future reference.

My question to you all, is how would you all suggest I go about doing the address to lat/long conversion. I know the Google Maps API allows this sort of conversion, but they also have restrictions on how you may use the converted values. (See http://code.google.com/apis/maps/faq.ht ... der_exists)

What are your thoughts?
User avatar
flying_circus
Forum Regular
Posts: 732
Joined: Wed Mar 05, 2008 10:23 pm
Location: Sunriver, OR

Re: Street Address to Lat/Long Conversion

Post by flying_circus »

I havent found a good (free) solution yet.

Google geocoding and you should come up with a few results. Maybe one will work for you?
User avatar
John Cartwright
Site Admin
Posts: 11470
Joined: Tue Dec 23, 2003 2:10 am
Location: Toronto
Contact:

Re: Street Address to Lat/Long Conversion

Post by John Cartwright »

Address geocoding would involve highly expensive databases. In my Uni program (geomatics), I think our databases for Canada alone were around $20,000 for this capability.

Your best bet would be to do it by zip/postal code. Although, these databases usually come with a price tag, they are far cheaper. If memory serves, you can get one for North America for a couple hundred bucks.
User avatar
ATLChris
Forum Newbie
Posts: 15
Joined: Mon Feb 09, 2009 6:21 am
Location: Atlanta, GA

Re: Street Address to Lat/Long Conversion

Post by ATLChris »

Thanks guys. I to have thought about accomplishing it on a zip code only basis. I have been searching around looking for a good zip code database that gets updated for sometime now. Do you all know of any particular ones?
User avatar
John Cartwright
Site Admin
Posts: 11470
Joined: Tue Dec 23, 2003 2:10 am
Location: Toronto
Contact:

Re: Street Address to Lat/Long Conversion

Post by John Cartwright »

MaxMind seems to be the online defacto for GeoIP.
Post Reply