postal-code

Where can I find a list of all UK _full_ postcodes including street name and their precise coordinates?

北慕城南 提交于 2019-12-03 05:02:49
问题 Where can I find a list of all UK full postcodes including street name and their precise coordinates? They should be not like AB1, AB23 etc but AB1 2AA, AB23 5ZZ etc. Preferably for free :) Thanks 回答1: You can now get postcode data for free from the Ordnance Survey https://www.ordnancesurvey.co.uk/business-and-government/products/code-point-open.html This doesn't come with street names though If you want the data converted to lat/long then you can grab it from my site http://www.doogal.co.uk

ZIP / Postal Code + Country to Geo Coordinates

倖福魔咒の 提交于 2019-12-03 02:43:07
What is the most complete, precise and reliable way to get the coordinates (latitude / longitude) of a given ZIP / Postal Code of a given country? I need to make a lot of requests, so a high API limit rate (maybe even absent) would be useful. GeoNames dumps would be cool, but it seems to have way too many duplicate coordinates ( example ) and it also seems that their database is missing some ZIP / postal codes for specific countries. Are there any other (reliable) alternatives? While I was reading a Meta question , I came across this link: http://query.yahooapis.com/v1/public/yql?q=select%20

Where can I find a list of all UK _full_ postcodes including street name and their precise coordinates?

那年仲夏 提交于 2019-12-02 19:13:31
Where can I find a list of all UK full postcodes including street name and their precise coordinates? They should be not like AB1, AB23 etc but AB1 2AA, AB23 5ZZ etc. Preferably for free :) Thanks Doogal You can now get postcode data for free from the Ordnance Survey https://www.ordnancesurvey.co.uk/business-and-government/products/code-point-open.html This doesn't come with street names though If you want the data converted to lat/long then you can grab it from my site http://www.doogal.co.uk/UKPostcodes.php You can download the entire GB postcode data complete with Lat and Long values from

Validate Postcode in Access?

强颜欢笑 提交于 2019-12-02 17:38:46
问题 I have been searching around for a way to do this but I am finding it hard :( I am very very very new to VBA (In fact, I have not used it) but I am determined ! What I want to do is validate a postcode so that it formats it and checks it. I have tried Input mask and validation, but this are not perfect. So I have turned to VBA. I have found examples of code, and put them into VBA, but I can't get it to do anything :( It needs to work with these postcodes ... A9 9AA A9A 9AA A99 9AA AA9 9AA

Library to calculate distances between postcodes in the UK

只愿长相守 提交于 2019-12-02 17:14:44
问题 I am looking for a way to calculate approximate distance between two UK postcodes (distance in the straight line is good enough) for analysing data. Preferably easily accessible from java, but C#, native C++ etc. are fine as well. 回答1: First, you need to translate the postcode into useful coordinates. For example, the Easting and Northing values from a Postcode lookup table, like the one from here: http://www.doogal.co.uk/UKPostcodes.php These Easting and Northing are UK Ordnance Survey grid

Generate UK postcode from lat,lon search in Google Maps

空扰寡人 提交于 2019-12-02 13:21:38
问题 I'm trying to generate a UK postcode from a latitude and longitude search in Google Maps. For example, a search for 57.350237,-1.977539 in Google Maps returns this: http://i.imgur.com/35iB5.png I want to be able to extract that postcode - AB41 8. All I've seen so far are ideas on how to get the lat,lon from the postcode but not the other way around. Any ideas? Thanks, 回答1: You could take a look at Google's Geocoding API, specifically Reverse Geocoding. 回答2: Unfortunately in the UK, the Royal

Library to calculate distances between postcodes in the UK

这一生的挚爱 提交于 2019-12-02 10:21:56
I am looking for a way to calculate approximate distance between two UK postcodes (distance in the straight line is good enough) for analysing data. Preferably easily accessible from java, but C#, native C++ etc. are fine as well. First, you need to translate the postcode into useful coordinates. For example, the Easting and Northing values from a Postcode lookup table, like the one from here: http://www.doogal.co.uk/UKPostcodes.php These Easting and Northing are UK Ordnance Survey grid coordinates in metres from the OS map origin. Convert them into Kilometres by dividing by 1000 Then use a

Generate UK postcode from lat,lon search in Google Maps

你。 提交于 2019-12-02 06:04:22
I'm trying to generate a UK postcode from a latitude and longitude search in Google Maps. For example, a search for 57.350237,-1.977539 in Google Maps returns this: http://i.imgur.com/35iB5.png I want to be able to extract that postcode - AB41 8. All I've seen so far are ideas on how to get the lat,lon from the postcode but not the other way around. Any ideas? Thanks, You could take a look at Google's Geocoding API, specifically Reverse Geocoding . Unfortunately in the UK, the Royal Mail are the only ones with such data of that accuracy and completeness. To access it, you have to pay them for

Python, Regular Expression Postcode search

纵然是瞬间 提交于 2019-12-01 00:14:26
I am trying to use regular expressions to find a UK postcode within a string. I have got the regular expression working inside RegexBuddy, see below: \b[A-Z]{1,2}[0-9][A-Z0-9]? [0-9][ABD-HJLNP-UW-Z]{2}\b I have a bunch of addresses and want to grab the postcode from them, example below: 123 Some Road Name Town, City County PA23 6NH How would I go about this in Python? I am aware of the re module for Python but I am struggling to get it working. Cheers Eef repeating your address 3 times with postcode PA23 6NH, PA2 6NH and PA2Q 6NH as test for you pattern and using the regex from wikipedia

Need to find latitude and longitude of postcodes and store into my database [closed]

二次信任 提交于 2019-11-30 23:29:49
I’ve got a database full of UK Postcodes, now I’d like to be able to store the latitude and longitude of these specific postcodes along with the record with the database. Is there any way that I can obtain this data free without violating any T&C's? I know I could do this using Google maps API for each postcode, but I have way over 20,000 postcodes in this database and to get the lat and lng for each of these postcodes each time is not an option really. Thanks in advance, M Ben Postcode location data is available free now. See this answer: https://stackoverflow.com/a/2625123/587803 https://www