Question Webservice to get geo codes

Hi,

I would like to populate a temp-table with latitude and longitude when I pass a place name to it. Is there any web service available.
Def temp-table tfDestinations
FIELD NameDest AS CHAR
FIELD LatDest AS DEC
FIELD LongDest AS DEC.

TIA
-Philip-
 

LarryD

Active Member
The problem with google is that while free, the TOS is very restrictive as to use. And many of the other free ones are limited as to how many queries you can perform over a period of time.

There are a number of paid services (as noted, Google search is your friend here).

For our customers, we found the open source Data Science Toolkit works nicely ( http://www.datasciencetoolkit.org/ ). It's not perfect, but performs the lat/long calculations close enough for our requirements.
 
Top