views:

4133

answers:

7

I need to geocode around 200 addresses per request and do around 3,000 request per day. I will be doing this server side using PHP. I have looked at http://stackoverflow.com/questions/98449/how-to-convert-an-address-to-a-latlon, but could not find a way for either Google Maps HTTP Request API or the Yahoo Geocoding REST API (cannot use JavaScript as this is server side) to send multiple addresses.

I will be primarily using this to sort addresses based on the coordinates and if the API supports, fill in any missing data for each address. The addresses will be in the United States only. The addresses to geocode will be from user input, so be free form, like "street address, postal code", or "city, state", etc. Accuracy is not too important for the coordinates, say within five hundred feet or so.

Is there a free API to handle this? Is there a way to get Yahoo or Google to do multiple locations in a request?

+4  A: 

geocoder.us will do what you want, but you may have the same problem for bulk lookups. They do do bulk lookups for a fee though.

Would GeoNames provide sufficient information, either through the bulk raw data or via their web services?

Mat
For his projected daily volume, geocoder.us would be US$1500 _per day_
Alnitak
When put into perspective by Alnitak that it's 600,000 geocode look ups a day, I've decided to do the look ups locally.GeoNames has a free download here: http://www.geonames.org/export/. And there's a PERL script for using Geo:Coder:US locallyGreat ideas Mat. Thanks everyone.
+1  A: 

Mapquest has an API which allows batch geocoding. However they don't provide one directly for PHP. But you can look up their protocol documentation http://developer.mapquest.com/Library/SDK_Documentation/Protocols to implement it yourself. They may refer to bulk geocoding as a Location Collection in the docs.

Marek
+3  A: 

I've looked at the Google Maps api, Yahoo Maps Api, MapQuest API, and the Microsoft Virtual Earth API. None of these free services allow bulk geocoding.

But, Google Maps api allows 15,000 goecodes per day. But they don't like it when you send too many at one time. They suggest waiting 200ms between requests. They track you by IP address btw.

Yahoo allows 5,000 per day, and is also an easy api to use. Microsoft Virtual Earth allows 5,000 per day, but the api documentation is a pain in the butt.

MapQuest is just strange, and doesn't seem to give good results (least accurate of all that I've seen).

I've actually set up my code to alternate between several services so I can make multiple requests at once. This - sort of - simulates bulk encoding.

Chris Brandsma
A: 

This might sound odd but I did a site a while ago and the client wanted the user to enter only a zip and we would provide the remaining data. I used the yahoo weather api which, at the time, returned a xml file with all the weather data, and the ciy,state,zip worked well for addresses in the US

Unkwntech
+1  A: 

The USC WebGIS Geocoder offers several geocoding API's that can do this. It's free and allows batch lookups from your code, or you can upload a database for batch processing.

A: 

Use GDirections. It allows up to 25 waypoints at a time and returns a geocoded location for each one.

liammclennan
@liammclennan: Could you provide an example function, that takes 25 locations as input and returns 25 coordinates as output using `GDirections`? Thanks
dma_k
A: 

BulkGeocoder is a website where you can get addresses geocoded in bulk. We are in the process of building an API. Do contact us through the website if you have any specific requirements for the same.

Geocoder