Chris Richards
2006-May-03 09:24 UTC
[Rails] get Addresses and house numbers from Post Code?
Hi, does anyone know a way to get the address and a list of house numbers from a Post Code? Is their an online web service that will do this? I''m creating an app for a chinese take-away and this functionality is important. What do you think is the best way of achieving this? for UK post codes. Thanks Chris -- Posted via http://www.ruby-forum.com/.
Google is your friend: http://www.postcodeanywhere.co.uk/ It''s a commercial service, but seems to have the information you need. Tom On 5/3/06, Chris Richards <evilgeenius@gmail.com> wrote:> Hi, > > does anyone know a way to get the address and a list of house numbers > from a Post Code? Is their an online web service that will do this? > I''m creating an app for a chinese take-away and this functionality is > important. What do you think is the best way of achieving this? for UK > post codes. > > Thanks > Chris > > -- > Posted via http://www.ruby-forum.com/. > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails
Jonathan Conway
2006-May-03 09:44 UTC
[Rails] Re: get Addresses and house numbers from Post Code?
Hi Chris, We recently did this with an app we''re working on and used http://www.postcodeanywhere.co.uk. They expose web services via SOAP, REST etc. In the end we went with the simpler REST option. There are lots of developer docs on the site, but I have no idea as to the cost of the service as the client already had an account with them. Hope this helps Jonathan ----- http://www.agileevolved.com Chris Richards wrote:> Hi, > > does anyone know a way to get the address and a list of house numbers > from a Post Code? Is their an online web service that will do this? > I''m creating an app for a chinese take-away and this functionality is > important. What do you think is the best way of achieving this? for UK > post codes. > > Thanks > Chris >
Hi Chris> does anyone know a way to get the address and a list of house numbers > from a Post Code? Is their an online web service that will do this? > I''m creating an app for a chinese take-away and this functionality is > important. What do you think is the best way of achieving this? for UK > post codes.Assuming the post code means you''re UK based, http://www.postcodeanywhere.co.uk/ might be a place to start. There''s a financial issue with alot of the postcode, geocoding stuff in the UK though. Basically, the all the postcodes are Royal Mail copyrighted, so might be worth checking the soultuion costs for similar services. Cheers Piers -- Posted via http://www.ruby-forum.com/.
Brian Watson
2006-May-03 10:05 UTC
[Rails] Re: get Addresses and house numbers from Post Code?
Chris Richards wrote:> Hi, > > does anyone know a way to get the address and a list of house numbers > from a Post Code? Is their an online web service that will do this? > I''m creating an app for a chinese take-away and this functionality is > important. What do you think is the best way of achieving this? for UK > post codes. > > Thanks > ChrisThe following sites provide postcode web services but I have not tried using them with ruby. http://www.postcodeanywhere.co.uk http://www.afd.co.uk http://www.allies-computing.co.uk/pcodeweb.html http://www.etellect.co.uk/products/online-address-finder-with-epostcode/postcode-web-service good hunting. If you do build a work solution I would be interested in using it. regards Brian -- Posted via http://www.ruby-forum.com/.
Chris Richards
2006-May-03 10:21 UTC
[Rails] Re: get Addresses and house numbers from Post Code?
Im wondering if there is a stand alone app that i can buy that will allow me to get addresses of postcodes. A web service is not ideal in my situation because my app will most likely not connected to the internet -- Posted via http://www.ruby-forum.com/.
Alan Francis
2006-May-03 10:23 UTC
[Rails] Re: get Addresses and house numbers from Post Code?
Chris Richards wrote:> Im wondering if there is a stand alone app that i can buy that will > allow me to get addresses of postcodes. A web service is not ideal in > my situation because my app will most likely not connected to the > internetBack in the dim and distant past, I worked for a junk mail company and we had a thing that was bought from the Post Office at enormous expense. It was a big proprietary DB and app. I assume they still sell something similar. A. -- Posted via http://www.ruby-forum.com/.
Alan Francis
2006-May-03 10:27 UTC
[Rails] Re: get Addresses and house numbers from Post Code?
> I assume they still sell something similar. > > A.http://www.postoffice.co.uk/portal/rm/jump2?mediaId=400085&catId=400084 -- Posted via http://www.ruby-forum.com/.
Alan Francis
2006-May-03 10:28 UTC
[Rails] Re: get Addresses and house numbers from Post Code?
Apologies for multiple replies. Ouch. it''s expensive. http://www.royalmail.com/portal/rm/content1?catId=400085&mediaId=1400099 -- Posted via http://www.ruby-forum.com/.
Chris Richards
2006-May-03 11:00 UTC
[Rails] Re: get Addresses and house numbers from Post Code?
do you think it would be possible to use it with rails? -- Posted via http://www.ruby-forum.com/.
Andrew Edwards
2006-May-03 11:57 UTC
[Rails] Re: get Addresses and house numbers from Post Code?
Brian Watson wrote:> > The following sites provide postcode web services but I have not tried > using them with ruby. > http://www.postcodeanywhere.co.uk > http://www.afd.co.uk > http://www.allies-computing.co.uk/pcodeweb.html > http://www.etellect.co.uk/products/online-address-finder-with-epostcode/postcode-web-service > > good hunting. If you do build a work solution I would be interested in > using it. > regards > BrianI have used AFD products for a number of years on other non-Ruby projects and can vouch for their reliability. I am currently redesigning our order processing system using ROR and will no doubt be solving a similar problem quite soon. Like Brian, I too would be interested in which option you choose :-) http://www.afd.co.uk/netproducts.asp Andrew. -- Posted via http://www.ruby-forum.com/.