Questions tagged [street-address]

Street address refers to postal addresses, or delivery points, that can be used for physical delivery of mail or goods.

Street address refers to postal addresses, or delivery points, that can be used for physical delivery of mail or goods. Data quality is a big issue surrounding street addresses, because they are not simple strings or numbers such as an email address or phone number. Therefore capturing, storing, de-duplicating and verifying street addresses all pose challenges.

577 questions
1
vote
3 answers

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 instantiate this class - it doesn't have a public…
nickl
  • 215
  • 1
  • 5
  • 10
1
vote
6 answers

Designing Address validation for app

I am planning to design an address validation for users registering in my app. Possibly validating by zipcode and state. Any idea how to handle addresses from around the globe? Do i need to insert all the zipcodes in the database and then validate…
krisp
1
vote
1 answer

Place Autocomplete in iOS (swift) on Signup (address) form

I am a signup form which has bunch of text fields like name, phone, address 1st line, city, state etc. Can I use googles's Place Autocomplete on this form in such a way that when I start typing address 1st line in one of the fields it suggests/auto…
T_C
  • 3,148
  • 5
  • 26
  • 46
1
vote
0 answers

Get Address without Internet through Cell Site

I would like to know if it is possible to get the name of an area without internet using the GsmCellLocation class; cell ID and Location Area Code? Yash047
Y. Gopee
  • 113
  • 1
  • 1
  • 10
1
vote
1 answer

Common Markup Language for Address/Location

I'm looking for a standard markup language to transmit addresses (locations). I really need nothing more complicated than a list of addresses with some metadata, each requiring a name, address, state, phone, email, geocoordinates, and some other…
Michael Krauklis
  • 3,914
  • 2
  • 28
  • 28
1
vote
1 answer

MAGENTO Force customer to fulfill the address form again

I created a new attribute to the address form and it is working fine, my problem is with older customers. How can I make force them to have to edit their address? WHen they go to the checkout page, they choose the old address without knowing about…
Jonathan
  • 4,724
  • 7
  • 45
  • 65
1
vote
1 answer

Best way to represent Spain address in java

I have coded the below to represent addresses in Spain. Let me know if there are better ways of doing this or if there is already a open source library dealing with i18n addresses. /** * From
Aravind Yarram
  • 78,777
  • 46
  • 231
  • 327
1
vote
2 answers

How to get address in a well-organized format

First of all, I am familiar with Geocoder and Places API. For this reason, I do not ask about how can I get the whole address in the raw format by using these. I am looking for getting the formal address of somewhere. Since the places that can be…
Dorukhan Arslan
  • 2,676
  • 2
  • 24
  • 42
1
vote
1 answer

Show possible entries while user entering the address UITextField

My requirement is as follows, User writes address in UITextfield, based on that address latitude and longitude will be fetched and it would be shown on map. But client's one more requirement is, while typing the address on textfield, possible…
iPhone
  • 4,092
  • 3
  • 34
  • 58
1
vote
1 answer

How to parse street address with Regex?

I am working on a regex to parse full addresses by street number, street name, city, state, and zip code. I came up with a pretty good regex that works for most cases, however, there are a couple scenarios where it fails. I need help with improving…
portfoliobuilder
  • 7,556
  • 14
  • 76
  • 136
1
vote
2 answers

How to get the full street address via the geocoder gem?

I am using geocoder with Google to validate addresses and give me back the correct values if they are munged slightly as well as to acquire latitude and longitude. I think I may be a bit off in my implementation here because it just feels so clunky…
ylluminate
  • 12,102
  • 17
  • 78
  • 152
1
vote
4 answers

Python make sure address matches specific format

I have been playing around with regular expressions, but haven't had any luck yet. I need to introduce some address validation. I need to make sure that a user defined address matches this format: "717 N 2ND ST, MANKATO, MN 56001" or possibly…
crmackey
  • 349
  • 1
  • 5
  • 20
1
vote
0 answers

I want to use Foursquare to look up an address for a company or venue name

Can the venues API do this? I am not trying to find what is close to a venue, but instead want to use the address from the Foursquare system.
1
vote
4 answers

ruby - find and replace in a string for commonly used street suffix

The post office actually publishes a list of commonly used street suffixes in addresses: http://www.usps.com/ncsc/lookups/abbr_suffix.txt I want to take this list and make a ruby function that takes a string, takes the last word ("183 main…
go minimal
  • 1,693
  • 5
  • 25
  • 42
1
vote
1 answer

Get specific addresses for names of places

Ultimately what I want is to geocode an address for a large set of high schools. For example I have: Destrehan high school, St. Rose Louisiana Because I have no street information it fails if I try to geocode this. So first I need the exact…