19

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 How to convert an address to a latitude/longitude?, 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?

Community
  • 1
  • 1
  • 8
    Dear sirs, please advise where I can find a database that'll let me look up 600,000 geolocation records every day for nothing... – Alnitak Dec 28 '08 at 23:13
  • maybe he wants to copy/past the entire GeoLocation database :) – balexandre Dec 28 '08 at 23:37
  • 3
    If you are a church, library, school or 501c3 nonprofit organization. Smartystreets offers free address validation. 600,000 records would take about 15 minutes. (I know because I work at SmartyStreets and it was my idea to give it away free). – Jeffrey Aug 13 '13 at 23:36

7 Answers7

21

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
  • 11,666
  • 5
  • 47
  • 58
  • 1
    @Nyxynyx - I was just looking at this today, and they currently allow 2,500 geocodes per day for free accounts (100,000 for business accounts). – Tom Pietrosanti Jun 05 '12 at 16:18
  • 1
    Also be aware... "Note: the Geocoding API may only be used in conjunction with a Google map; geocoding results without displaying them on a map is prohibited." see https://developers.google.com/maps/documentation/geocoding/ – puddleglum Oct 11 '12 at 17:24
7

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

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

Günter Zöchbauer
  • 623,577
  • 216
  • 2,003
  • 1,567
Mat
  • 82,161
  • 34
  • 89
  • 109
  • For his projected daily volume, geocoder.us would be US$1500 _per day_ – Alnitak Dec 28 '08 at 23:20
  • 3
    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 locally Great ideas Mat. Thanks everyone. –  Dec 29 '08 at 03:34
5

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.

GavinR
  • 6,094
  • 7
  • 33
  • 44
2

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
  • 194
  • 1
  • 3
2

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
  • 88,102
  • 65
  • 184
  • 229
1

Look at http://www.torchproducts.com/tools/geocode to geocode a list of addresses quickly

Brian
  • 147
  • 1
  • 4
0

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

liammclennan
  • 5,295
  • 3
  • 34
  • 30
  • Could you provide an example function, that takes 25 locations as input and returns 25 coordinates as output using `GDirections`? Thanks – dma_k Oct 29 '10 at 11:11
  • http://code.google.com/apis/maps/documentation/javascript/v2/reference.html#GDirections – liammclennan Nov 02 '10 at 03:25