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
5
votes
1 answer

What should I use to format an postal address in the format of the address country

I need to format postal addresses into the format of the country and am looking for some PHP library that can do that. I work with zend framework 2 which uses Locale but unfortunately that does not seem to be able to handle this at this…
bas
  • 628
  • 9
  • 22
4
votes
0 answers

Convert Street Address to Business Name

I'm doing research for an application and I want to be able to have a GPS coordinate and then find the owner or business name of that address. I'm familiar with Android Geocoding and reverse Geocoding, but that only converts a coordinate to a street…
4
votes
2 answers

Database normalization for Addresses

I am trying to build a database for a limousine company and I got stuck on how much Normalization should I do for Addresses related to Customers, Drivers, Affiliates and Orders. Basically the Affiliate and Driver addresses look like…
Cristian
  • 2,390
  • 6
  • 27
  • 40
4
votes
2 answers

Bing maps. How can I get address by lat and long?

Is it possible to get address(Country, City, street, etc) by latitude and longitude? (BingMaps version 7)
Yara
  • 4,441
  • 6
  • 42
  • 62
4
votes
1 answer

Recommended Globalization References

I'm working on a web application that is globalized. The development process is agile style, with several sprints already completed. Our globalization framework is good and localization efforts have been successful so far. However, we continue to…
4
votes
1 answer

How do I pull the Country field out of an ABAddressBookRef?

I'm having trouble understanding how to access the properties of an address in a an ABAddressBookRef. I've done it okay with telephone numbers: ABMultiValueRef phoneNumberProperty = ABRecordCopyValue(person, kABPersonPhoneProperty); NSArray*…
jowie
  • 8,028
  • 8
  • 55
  • 94
4
votes
2 answers

Getting pinpoint address of marker - Google Maps V3

I'm using Google Maps V3 API. Whenever a user drops a pin on a street (or perhaps a few metres/yards away from a street) it should get the address components which I use to retrieve from the dropped marker. What is bothering me, is that when I drop…
MacMac
  • 34,294
  • 55
  • 151
  • 222
4
votes
4 answers

Python .replace 'st' with 'street' but leave street name the same

I'm trying to change st. to street, ave. to avenue, etc. using .replace() for addresses in a single cell. For example: WEST ST. should be WEST STREET or MOUNT PEBBLE RD. should be MOUNT PEBBLE ROAD Here is my code: if 'STREET' not in address and…
muffint0p
  • 63
  • 6
4
votes
1 answer

Weighted disjunction in Perl Regular Expressions?

I am fairly experienced with regular expressions, but I am having some difficulty with a current application involving disjunction. My situation is this: I need to separate an address into its component parts based on a regular expression match on…
NatHillard
  • 306
  • 2
  • 10
4
votes
1 answer

Free Address Verification/Standardization

USPS webtools is expensive, and Google Maps doesn't have certain addresses. Are there any free or open-source solutions?
ma11hew28
  • 121,420
  • 116
  • 450
  • 651
4
votes
1 answer

How to identify address location from text string php?

I'm trying to identify and extract any input address location (Not limited to US - SmartyStreet) from a long string of text using php on my xampp. I've read several topics/libraries regarding on how to do this, which revolves around using NLP,…
Vivian
  • 1,071
  • 5
  • 16
  • 29
4
votes
2 answers

Output a CHANGING OrderedDict to CSV

I've poured over this post, but the answers don't seem to work for my needs. However, I'm very new to Python so that might be the problem as well. Here's some lines from the output.csv: Case Parties Address 25 THOMAS ST., PORTAGE, IN 67 CHESTNUT…
JoeB
  • 43
  • 5
4
votes
8 answers

Best Strategies for preventing addresses with PO Boxes?

I have a client which is shipping via UPS, and therefore cannot deliver to Post Office boxes. I would like to be able to validate customer address fields in order to prevent them from entering addresses which include a PO box. It would be best if…
LockeCJ
  • 558
  • 1
  • 4
  • 21
4
votes
4 answers

How to distinguish a NY "Queens-style" street address from a ranged address, and an address with a unit#

I need to distinguish between a Queens style address, from a valid ranged address, and an address with a unit#. For eg: Queens style: 123-125 Some Street, NY Ranged Address: 6414-6418 37th Ln SE, Olympia, WA 98503 Address with unit#: 1990-A…
feroze
  • 7,380
  • 7
  • 40
  • 57
4
votes
5 answers

How do you convert a java String to a mailing address object?

As input I am getting an address as a String. It may say something like "123 Fake Street\nLos Angeles, CA 99988". How can I convert this into an object with fields like this: Address1 Address2 City State Zip Code Or something similar to this? If…
Daniel Kaplan
  • 62,768
  • 50
  • 234
  • 356