views:

654

answers:

2

Is there a good physical address to GeoLocation conversion database in the UK? I am trying to use this to build a globrix style search box http://www.globrix.com/ for a web application. Any pointers will be nice. I have been searching for hours. I have found several that convert UK Postcodes into Geolocation. But I need the addresses listed as on Globrix.

A: 

http://www.postcodeanywhere.co.uk should be able to help with this. Alternatively, you can buy the "PAF" (Postcode Address File) from the Royal Mail, but it is expensive.

Richy C.
http://www.freeourdata.org.uk/, baby!
skaffman
+2  A: 

The Google Maps API provides a geocoder webservice that you can actually use independently of Google Maps itself. You send it the address/postcode, and it responds with a lat/long plus disambiguated addresses. We use it server-side in the UK to do address lookup. It's incredibly quick, too.

http://code.google.com/apis/maps/documentation/geocoding/index.html

skaffman
The Google Maps API is the next step.. What I need to start with is a mechanism to list all the addresses and display using AJAX like on Globrix first.
phpguy
Yes, and what I said *is* such a mechanism.
skaffman
Coooooool Stuff.. This does not give me the AJAX style popup a 100% but is good enough for me to work with..
phpguy