2 Esri Geocoding (ArcGIS Online World Geocoding Service) Esri’s ArcGIS Online Geocoding Service is a paid service that requires credits to use. There’s a limited amount of addresses (250 or so) to can geocode at a time with a free account of Esri ArcGIS Online. Geocoding API. Accurate geocoding results are an essential part of many geospatial processes. Whether you want to show your retail locations on a map, calculate an optimized route for a delivery, or search within the radius of an origin point, the geocoding API enables you to associate latitude and longitude with an associated address. Our geocoding engine is the result of the last seven years of work and gets better and better every day. Our algorithms are state-of-the-art and peer reviewed. Tons of people use these services; you should too. Take them for a test drive today. Fs2004 free scenery. We currently provide geocoding for US addresses only. Test the service for free here: Interactive.
Active10 months ago
I want to use geo coding services in my site which are the APIs available for this, Java based solutions will be preferred and I want to use this in a commercial project so please suggest appropriate options i.e. APIs which can be used in such projects freely.
Before asking this question I have tried searching on net and found that few popular geoCoding APIs are the ones from Google and yahoo. And few answers in SO suggest using Google API (Which seems very popular one), before deciding I want to know is their any other option and what are the available solutions for this ?
Even A Link to some blog/ site which contains detailed analysis of all these sites will be of great help.
Amit
AmitAmit7,71615 gold badges59 silver badges136 bronze badges
closed as off-topic by FrankerZ, Michael Dodd, Madhur Bhaiya, Sotirios Delimanolis, Pearly SpencerNov 5 '18 at 17:11
This question appears to be off-topic. The users who voted to close gave this specific reason:
- 'Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.' – FrankerZ, Michael Dodd, Madhur Bhaiya, Sotirios Delimanolis, Pearly Spencer
5 Answers
Available Solutions for the Address / ZipCode to (latitude, longitude) mapping are ..
Google API, http://code.google.com/apis/maps/documentation/geocoding/ )The most popular due to Google’s name. Extensive support available on the internet (less development time).Alas! not available freely for commercial usage. The free version has 2500 queries/day limitations. (http://code.google.com/apis/maps/documentation/geocoding/)There is one clause in “Usage Terms” which says the result must be displayed in google maps, reference http://code.google.com/apis/maps/documentation/geocoding/#GeocodingRequests terms and conditions are mentioned here. http://code.google.com/apis/maps/terms.html#section_10_12
Nominatium, (http://wiki.openstreetmap.org/wiki/Nominatim )A less common organization which provides an open source, free ware solution for the address to (latitude, longitude) mapping.Can be also used in commercial projects.Their are no restrictions for number of queries per day and no hidden clauses in “usage terms”.Since the organization itself is not much popular, less support is available.
Yahoo API, http://developer.yahoo.com/geo/placefinder/ Another popular API like google’s but some what more available.supports upto 50000 requests per day.Like google extensive support is available. Yahoo encourages us to use the “powered by yahoo logo” but doesn’t force us for that. ( http://info.yahoo.com/legal/us/yahoo/api/api-2140.html )Can be used for commercial purposes (I have read Yahoo Terms and doesn't find any clause which restricts us in doing that, reference http://info.yahoo.com/legal/us/yahoo/maps/mapsapi/mapsapi-2141.html ).
YQL (Yahoo Query language see:- http://developer.yahoo.com/yql/ )A SQl based query language which queries yahoo web service. for example if we have a zip code
we can write a YQL as [ select centroid from geo.places where text='Enter some pin code here'].Yahoo encourages us to use YQL in commercial applications. (http://developer.yahoo.com/yql/faq/ )Most number of allowed queries as compared to all other options i.e. 20,000 calls/hour/IP and 100,000 calls/day/key. (see http://developer.yahoo.com/yql/faq/ ), Support available for YQL is quite good, see the links.
7,71615 gold badges59 silver badges136 bronze badges
Gisgraphy is a alternative to Nominatim, a geocoding service on top of OpenStreetMaps data.They provide a hosted solution - and you can install their software for free.
More information at http://www.gisgraphy.com/
TobiasTobias
Mapquest Open Api has a geocoding service that uses OSM data.
PatrickPatrick8,05418 gold badges69 silver badges133 bronze badges
Googles services are free up untill a certain limit (which actually is quite hard to hit) and the API is very friendly to work with. I am using it in a couple of applications myself and it works flawlessly and is extremely fast
Jan DragsbaekFree Geocode Lookup
Jan Dragsbaek7,0531 gold badge21 silver badges45 bronze badges
Free Geocoding Api Service
This alternative API for french adresses : https://adresse.data.gouv.fr/api
L.GL.G