Tagged Questions
The postal-code tag has no wiki summary.
25
votes
11answers
4k views
Is there common street addresses database design for all addresses of the world?
I am a programmer and to be honest don't know street address structures of the world, just how in my country is structured :) so which is the best and common database design for storing street ...
24
votes
11answers
4k views
Best practices for storing postal addresses in a database (RDBMS)?
Are there any good references for best practices for storing postal addresses in an RDBMS? It seems there are lots of tradeoffs that can be made and lots of pros and cons to each to be evaluated -- ...
10
votes
3answers
1k views
Where can I get postal codes for all countries?
I once read about an open source database for postal codes with geolocation data but now I can't remember its name. Can someone help?
9
votes
9answers
11k views
Address Validation API
I have a task to validate addresses entered into a system I am currently creating. The system requires that address entered are validated against a valid data source. In the UK the dataset comes from ...
8
votes
9answers
1k views
Is it a good idea to use an integer column for storing US ZIP codes in a database?
From first glance, it would appear I have two basic choices for storing ZIP codes in a database table:
Text (probably most common), i.e. char(5) or varchar(9) to support +4 extension
Numeric, i.e. ...
8
votes
11answers
4k views
What is the ultimate postal code and zip regex?
I'm looking for the ultimate postal code and zip code regex. I'm looking for something that will cover most (hopefully all) of the world.
8
votes
7answers
4k views
I need to store postal codes in a database. How big should the column be?
I expect the column to be a VARCHAR2, in my Oracle Database.
US Zips are 9.
Canadian is 7.
I am thinking 32 characters would be reasonable upper limit
What am I missing?
3
votes
2answers
2k views
How to convert postal code to city name, is there an API available?
How to convert post code to city name, is there an API available?
2
votes
1answer
77 views
Finding Closest Postcode of a Given Post Code
In my php application I want to get the nearest postal code of the given post code.
That means I enter a post code as 680721 I want to get the nearest post code of this from my database.
How can I do ...
2
votes
2answers
52 views
Mysql Subquery - Need to make a connection between two like queries in order to Count Occurrences of Postal Codes and Zip Codes
I'm having a bit of an issue figuring this out. I have two queries that I need to put together and no matter what I've tried I always end up with an error in mysql syntax. The two queries are below.
...
2
votes
1answer
281 views
Best API to retrieve zip code by user input city name (US only)?
I have a city name field I am getting value from (i.e. randomly formatted), such as "NEW YORK", "new york" or "new-york" or "ny".
Having that field's value, I need to present user with a list of ...
2
votes
1answer
132 views
Postal Code model field shows up as State list in Admin
Not sure, but I think this may be a bug?
Here is my model:
class Property(models.Model):
Name = models.CharField(max_length=40)
Description = models.TextField(default="Description Not Available")
...
2
votes
6answers
3k views
Retrieving Postal Code with Google Maps Javascript API V3 Reverse Geocode
I'm trying to submit a query using the postal code to my DB whenever the googlemaps viewport center changes. I know that this can be done with reverse geocoding with something like:
...
2
votes
4answers
2k views
ZIP / Postal Code + Country to Geo Coordinates
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 ...
2
votes
2answers
547 views
How to implement proximity search with postcode?
I have to use proximity search with postcode for Australia. Going through some links like
...
2
votes
1answer
731 views
WebRequest: How to find a postal code using a WebRequest against this ContentType=“application/xhtml+xml, text/xml, text/html; charset=utf-8”?
I first posted this: HttpWebRequest: How to find a postal code at Canada Post through a WebRequest with x-www-form-enclosed?.
Following AnthonyWJones suggestions, I changed my code following his ...
2
votes
2answers
1k views
HttpWebRequest: How to find a postal code at Canada Post through a WebRequest with x-www-form-enclosed?
I'm currently writing some tests so that I may improve my skills with the Internet interaction through Windows Forms. One of those tests is to find a postal code which should be returned by Canada ...
1
vote
0answers
43 views
Search engine by distance
I am looking to make an option of my serach engine on my site so that users can search for items within a set distance, e.g. search items within 10 miles, or 20 miles etc. I was wondering how this ...
1
vote
1answer
133 views
using jquery to validate postal code based on country
Working on site where we currently accept US zip codes. I already have jquery validate working for that. What i want to do now is add a drop down for the user to select country, and then based on the ...
1
vote
3answers
52 views
How to get my regular expression to extract information, not just check
I have a regular expression for checking whether a string is zip/postal code or not. But I would really like to also to be able to extract that from a full address (or, if possible, any string).
Here ...
1
vote
0answers
266 views
International Postal Code Validation [closed]
Possible Duplicate:
What is the ultimate postal code and zip regex?
Is there a well-defined set of regexes for validating international postal codes? I have 52 different countries that I ...
1
vote
3answers
302 views
php extract UK postal code and validate it
I have some text blocks like
John+and+Co-Accountants-Hove-BN31GE-2959519
I need a function to extract the postcode "BN31GE". It may happen to not exist and have a text block without postcode so ...
1
vote
3answers
530 views
Postal Code error PayPal (PHP)
i want to integrate PayPal on my website with paypal integration wizard. I use PayPal API and expresscheckout.php, paypalfunctions.php generated by PayPal Integration Wizard. i wrote form to fill ...
1
vote
2answers
941 views
US/UK/CA Postal Code validation in PHP
Im not so good with regex. Im looking to add a validation function that will return true/false if the string entered into it is a valid US, UK, or CA zip/postal code.
US: NNNNN
CA: LNL NLN
UK: Lots ...
0
votes
0answers
37 views
show postal code/zip code bounds on google map
I would like to mark the outline (bounds) of a postal code on a map. With google maps API, I can send a postal code or address and get back log/lat, then place a icon on a map. Now I would like to ...
0
votes
0answers
36 views
What are the most popular Postal Address Verification Service (AVS) API vendors?
We have a commerce application where we need to verify that US postal addresses users enter into shipping address forms exist, in order to prevent bad lost/returned shipments.
We need an Postal ...
0
votes
1answer
95 views
Get postal code from geo location in Google Maps
Is it possible to find the nearest postal code using geo location search? Say, if I have lat/lng data to a house, can I get the postal code of said house using the Google Maps API?
0
votes
6answers
150 views
Parsing ZIP (Postal) code from US address with Java
The question is how do you detect 5 digits following each other in string. Ergo finding US postal code.
Side note: I'd like to use the code with GWT so there are limitations on regex and third party ...
0
votes
5answers
200 views
regex for matching german postal codes but not a
following string:
23434 5465434
58495 / 46949345
58495 - 46949345
58495 / 55643
d 44444 ssdfsdf
64784
45643 dfgh
58495/55643
48593/48309596
675643235
...
0
votes
1answer
819 views
How to look up ZIP/Postal Code by City using Google Maps API?
How can I extract a Postal Code or ZIP of a place by giving Google Maps a city on the map?
Basically I'm looking for a free verification service for checking completed addresses for accurate ...
0
votes
3answers
410 views
What is the quickest way to validate a postal code as existing on the iPhone?
I have an iPhone application which accepts valid zip codes as input. The input can be quickly validated for format; I am looking for methods to validate whether it exists or not.
What is the most ...