Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
7answers
5k views

mysql datatype for telephone number and address

I want to input telephone number in a form, including country code, extension create table if not exists employee( ` country_code_tel int(11), tel_number int(10), ...
3
votes
2answers
211 views

Guide to international postal address formats

Where can I find a guide to different postal address formats that are used in the major countries in the world? For example, in the U.S. one format is: street_number street_name street_type city, ...
2
votes
1answer
58 views

What webservices are available to obtain miles between two addresses?

I need to find a way to get miles (not a straight line) between two locations by passing the post addresses. If you consider the simplicity of implementation, efficiency and stability, which ...
1
vote
3answers
56 views

How can I get the customer address from google map?

I have a online shop and people buy our products and we send a products to their address. but sometimes customers enter a bad address and we cant find the address. I want to display a Google map for ...
1
vote
3answers
266 views

How would you sanitize the street number out of a postal address using Java?

To ensure data privacy, I have to publish a list of addresses after removing the street numbers. So, for example: 1600 Amphitheatre Parkway, Mountain View, CA needs to be published as ...
1
vote
3answers
507 views

Java library to validate postal addresses entered by users in App Engine app?

At first I thought the com.google.appengine.api.datastore.PostalAddress class was going to provide some way of validating addresses entered by users in an App Engine app but I don't even know how to ...
0
votes
2answers
23 views

Need to sort postal addresses in a database table in sequence

I'm developing an Android app that has postal address routing in it. We would like to sort each address in a database table in such a way where each address can be printed out for our driver. We ...
0
votes
0answers
35 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
182 views

How to detect if a query string is relevant for a Google Map Static API lookup

I am currently developing a web app that uses Google's Static Map API, in order to display maps of places upon user's request. My problem is the following: How can I detect if a given string is ...
0
votes
1answer
166 views

How to parse Postal Addresses from html (high tolerance - low strictness)

I am looking for ideas on how to extract postal addresses from various web sources. I'm using HtmlAgilityPack to convert the html to a XDocument (Csharp 4.0) Not looking to break down the address to ...
0
votes
1answer
818 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 ...