Tagged Questions
ZIP codes are a system of postal codes used by the United States Postal Service (USPS) since 1963.
12
votes
7answers
3k views
10
votes
4answers
5k views
How to lookup a zipcode from a GPS coordinate?
Say I have a web service API that accepts a zipcode as a parameter, but I only have access to a GPS coordinate (latitude, longitude). How can I dynamically lookup the zipcode that the coordinate ...
8
votes
7answers
7k views
Mapping US zip code to time zone
When users register with our app, we are able to infer their zip code when we validate them against a national database. What would be the best way to determine a good potential guess of their time ...
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.
7
votes
7answers
2k views
Calculate distance between Zip Codes… AND users
This is more of a challenge question than something I urgently need, so don't spend all day on it guys.
I built a dating site (long gone) back in 2000 or so, and one of the challenges was calculating ...
7
votes
3answers
3k views
Mysql Datatype for US Zip (Postal Codes)
I am writing a web application, that is US specific, so the format that other countries use for postal codes are not important. I have a list of us zip codes that i am trying to load into a database ...
6
votes
8answers
4k views
Plotting color map with zip codes in R or Python
I have some US demographic and firmographic data.
I would like to plot zipcode areas in a state or a smaller region (e.g. city). Each area would be annotated by color and/or text specific to that ...
6
votes
4answers
613 views
What is the best way to query a database for records within n miles of a zip code?
I have a list of records in my database and each record is associated with a zip code.
What is the "best-practice" for querying all the records in my database to find all entries that are within n ...
5
votes
3answers
136 views
algorithm to get US zip codes from gis x,y coordinates
I have a database of many tens of thousands of events that occurred at specific geographic locations within the United States. The data include x,y coodinates for each event, encoded using the NAD83 ...
5
votes
2answers
353 views
US Address Validation (Zip+4)
I have a database that has a list of zip codes which has latitude, longitude, state, city, state fips code, time zone, etc. I'd like to extend this and write either a C# function or TSQL (SQL Server ...
5
votes
2answers
527 views
jQuery zip masking for multiple formats
I have a requirements for masking a zip field so that it allows the classic 5 digits zip (XXXXX) or 5 + 4 format (XXXXX-XXXX).
I could so something like:
$('#myZipField').mask("?99999-9999");
but ...
5
votes
3answers
667 views
SQL Server distance search
I have a Microsoft SQL Server database with a table of Locations. Each location has its address and latitude and longitude coordinates.
In my application, the user can input a zipcode and we return a ...
4
votes
3answers
93 views
postgres find zip codes near specific zip code
Assuming a Postgres Table containing zip as varchar(10) I want to get either all results matching a specific zip or extend my results with entries close to the queried one in case there are not enough ...
4
votes
3answers
741 views
Given coordinates, how do I get all the Zip Codes within a 10 mile radius?
I have a location (latitude & longitude). How can I get a list of zipcodes that are either partially or fully within the 10 mile radius of my location?
The solution could be a call to a well ...
4
votes
1answer
595 views
MySQL Function to Determine Zip Code Proximity / Range
I have been able to create php function to determine a list of zip codes within a certain range of a given zip code. However, my next task is a bit more complex.
Lets say the table has the following ...
4
votes
6answers
411 views
Way to get a timezone from a zip code?
Anyone know of a web service or something out there that I could give a zip code and get a time zone back?
Or is that something I just need to write myself? If so, any hints or guides on how to do ...
4
votes
5answers
280 views
UK Postcode search
I want to build a website where you can search by entering the postcode (UK). I know that RoyalMail owns the Database to do this (it's only very expensive, $100K). What are my options?
4
votes
5answers
632 views
api for zip +4 from an address
What's the best api/resource to get a zip +4 from an address?
I don't want something that needs to be downloaded and updated from time to time; I want one that's updated automagically.
The goal is ...
4
votes
5answers
331 views
Zipcode based search
I want to make a geographical search using US city and state or zip-code and corresponding results will be viewed. In the search we have to mention the radius distance. For example:
i would like to ...
4
votes
2answers
2k views
Getting all zip codes within an n mile radius
What's the best way to get a function like the following to work:
def getNearest(zipCode, miles):
That is, given a zipcode (07024) and a radius, return all zipcodes which are within that radius?
4
votes
5answers
880 views
Filter by zip code, or other location based data retrieval strategies
My little site should be pooling list of items from a table using the active user's location as a filter. Think Craigslits, where you search for "dvd' but the results are not from all the DB, they are ...
3
votes
3answers
218 views
is there a java api for getting the latitude and longitude from zip codes?
I am building an applet that requires an input of a location. however, because of the specific API that I'm using, that input must be Latitude and Longitude. the problem with this is that it would be ...
3
votes
2answers
201 views
Assign lat/long to zip codes
I have a dataframe latitude and longitude points in R. Using the R data science toolkit, I can assign these points to Country/State/County/City/Constituency/Neighborhood, which is useful.
I'd like ...
3
votes
3answers
545 views
Zip code distance calculator
I have a spreadsheet of addresses and I need to calculate the distance between all of their zip codes and my zip code. I'm fairly flexible on the method used, but I'm hoping for some sort of ...
3
votes
4answers
292 views
Best Zip Code Plugin for Ruby
I need to find the city and state from a zip code. Does anyone know a good plugin/API that I can use to do this?
3
votes
3answers
383 views
Nearest zip code of a zip code?
I need to find the 5 nearest zip code of a zip code.
For example, I have 33304, and I need to find the nearest ones, like 33309, 33308 ...
Is there a database or a web service somewhere that would ...
3
votes
5answers
1k views
Filter zipcodes by proximity in Django with the Spherical Law of Cosines
I'm trying to handle proximity search for a basic store locater in Django. Rather than haul PostGIS around with my app just so I can use GeoDjango's distance filter, I'd like to use the Spherical Law ...
3
votes
4answers
122 views
How to get the city from a Canadian zip code?
Do you have any experience with obtaining the City from a Canadian zip code?
Is there a free web service to obtain city name by passing a Canadian zip code or can a regular expression be useful?
...
3
votes
12answers
3k views
Zip Code to City/State and vice-versa in a database?
I'm new to SQL and relational databases and I have what I would imagine is a common problem.
I'm making a website and when each user submits a post they have to provide a location in either a zip ...
2
votes
1answer
224 views
Calculating driving distance using zip codes
How can I code something which'll calculate the driving distance between 2 zip codes within the USA in PHP. An API or web service that has SOAP or REST will also do.
But I understand GoogleMaps API ...
2
votes
2answers
51 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
2answers
424 views
ZipCode from location
Is there any way to get zip-code of the current user location from location or lat or long.
If so how?
2
votes
3answers
222 views
Fastest way (and most optimized) to calculate and sort users by ascending order of zip code distance
I have a system which will return all users from the database and order the results by lowest distance from a reference zip code.
For example: User will come on the site, enter zip code and it will ...
2
votes
2answers
523 views
How to validate that zip code enter by user is correct US zipcode
I want to validate that zip code entered by user is valid or not.
for example user entered 009876654 and it is not valid then an error message should be given.
I know i can do it using javascript ...
2
votes
2answers
584 views
get lattitude and longitude of a place against its zipcode
i have used the following code to get the location of the particular place on map using the following piece of code
NSString * urlString = [[NSString alloc] ...
2
votes
5answers
389 views
How should I populate city/state fields based on the zip?
I'm aware there are databases for zip codes, but how would I grab the city/state fields based on that? Do these databases contain the city/states or do I have to do some sort of lookup to a ...
2
votes
3answers
5k views
How to get city name based on IP address in java?
Is it possible to know the city name based on IP address in java?
2
votes
4answers
454 views
PHP - How can I lookup the Zip Code using the City & State
I need to lookup the Zip Code for a list of addresses (which include the city/state). Is there a master zip code list for download (that is free) or are there any web services that will return the ...
2
votes
4answers
842 views
how would I go about finding the longest mailing city name in America?
The longest city name I was able to find (that had a Zip code) was "La Canada Flintridge" which is in CA. I found that haphazardly via google. For testing our mailing addresses, I'd like to get a ...
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
3answers
103 views
php Input field coming across as Integer
EDIT 2:
After writing up an incredibly long explanation in more detail I, of course, discovered my problem and it had nothing to do with the question I asked.
It was caused because I was creating a ...
2
votes
1answer
180 views
US ZIP Code in center between 2 ZIP codes?
How could I determine the closest 'center' ZIP code between two given US ZIP Codes?
2
votes
3answers
4k views
Adding a search by zip code in a custom Google map
First I would like to say that I am new to this site, never worked with Google Maps API and have an intermediate knowledge of JavaScript.
What I have done:
I put together a custom 'store locator' by ...
1
vote
2answers
45 views
Zip Code proximity calculation in PHP
I've seen all sorts of "store locator"-type solutions on the Web for finding, for example, stores within a given radius of a particular Zip Code, and they have fancy maps that display the nearest ...
1
vote
1answer
33 views
Automatic location detection in Ruby on Rails
A technical and legal question - what's the best rails gem to auto-detect location of a web visitor via e.g. IP? Down to granularity of state.
And is this an illegal privacy breach? Why do some ...
1
vote
3answers
151 views
Validate US Zip Code using Rails
How do you validate a U.S. zip code using Rails?
I wrote something like this but it doesn't work:
validates_format_of :zip_code,
:with => /^\d{5}(-\d{4})?$/,
:message => "Zip code should ...
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
1answer
108 views
Google Maps API: Get zipcode
Is it possible to get the zipcode of a location found using google maps api?
Currently it returns the longitude and latitude, but not the zipcode.
I found this for zipcodes: ...
1
vote
3answers
477 views
Nearest Zip Code Search using asp.net
I want to inplement functionallity that will search zip codes, if user enter any zip code than all the zip codes close to entered zip code will be shown. Please let us know if there is any free api ...
1
vote
2answers
112 views
call function in unrelated executable linux
If I have a pointer to a function and I give that to another (Unrelated/Child) Executable, how can I call that function without making a segfault?
At the moment I can create a function and assign it ...