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

php - validate street address with regular expression

I am using php version 7.0.14. In spite of several good examples on stackoverflow, I cannot get my php regex to work. I've been trying for hours every conceivable combination. The problem comes in trying to allow periods and slashes, which must…
Xi Vix
  • 1,381
  • 6
  • 24
  • 43
2
votes
1 answer

PostgreSQL join with similar address

I am trying to join data from disparate sources. The only common field to join is address. In table 1 , address has extra data (representing neighborhood) between street and state. Is there a way to join these tables using most similar address? I…
James Steele
  • 645
  • 1
  • 6
  • 22
2
votes
1 answer

Get random address/coordinates in a specified town

Is there any way to give Google Maps API or a similar API a town name and have it return a random address inside the town? I was hoping to be able to get the data as a JSON so I could parse it with SwiftyJSON in XCode and use it, but I can't seem to…
pdrum
  • 429
  • 1
  • 5
  • 8
2
votes
1 answer

UK Postcode Google API Not Returning Street Address

We are using the Google Geocoding API to validate UK postcodes on our transport booking form however it doesn't always return the street address, example EC2Y 8DR a London postcode will return the long/lat but the booing form fields are not…
2
votes
1 answer

How to set InventLocation address by code?

I have to set the InventLocation Address by code. By code I know how to find the InventLocation address, but if it isn't there I want to create it. My code is this : InventLocation invLocationTable; LogisticsPostalAddress…
ulisses
  • 1,549
  • 3
  • 37
  • 85
2
votes
1 answer

Geocoder blocks my android app

This is the code that I have: private void getGeocoderForCheckout(int section) { Log.i("","current address getGeocoderForCheckout"); setViewOver(); loader.setVisibility(View.VISIBLE); sect = section; selectedSD = currentPlace; …
rosu alin
  • 5,674
  • 11
  • 69
  • 150
2
votes
4 answers

How can I change the case of abbreviated ordinals to lower while keeping the rest of the string in title case?

I'm working on a python script to convert full uppercase addresses to Title Case. The issue I'm facing is that when I apply .title() to a string like SOUTH 16TH STREET, I get South 16Th Street. The desired conversion would be South 16th Street,…
Elliott
  • 360
  • 1
  • 4
  • 15
2
votes
2 answers

What's the best Street Address Search service?

I'm impressed with the simplicity of Microsoft's Virtual Earth Street Address search service. My requirement is to type rough address info with no comma separators into a simple text box, press a find button, wait a few seconds and then observe a…
Gary Russo
  • 377
  • 1
  • 4
  • 14
2
votes
1 answer

How to clean up US addresses formating using PHP and/or MySQL

I have a list of 500,000 accounts each with an address. What I need to do is clean up the addresses so I can find out which accounts falls in the same address. I understand there are going to be some errors but I would need to do the best I can. Is…
Jaylen
  • 39,043
  • 40
  • 128
  • 221
2
votes
1 answer

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 webservice(s) you can suggest? I would appreciate if you…
pencilCake
  • 51,323
  • 85
  • 226
  • 363
2
votes
1 answer

Any Java library for address extraction from emails?

I'm looking for an Java open-source library which is able to extract address information from a (German) email (signature). The library should find name street city, city code/postal code email tel/fax address-parser.com is an commercial product,…
2
votes
1 answer

How I can get neighborhood from LatLng

Im trying get the neighborhood from a LatLng Object. Im using Geocoder Object from Android API for do this. List
addresses = geocoder.getFromLocation(location.getLatitude(), location.getLongitude(), 5); I get the neighborhood name…
Cristian
  • 514
  • 4
  • 21
2
votes
7 answers

Java: Parse Australian Street Addresses

Looking for a quick and dirty way to parse Australian street addresses into its parts: 3A/45 Jindabyne Rd, Oakleigh, VIC 3166 should split into: "3A", 45, "Jindabyne Rd" "Oakleigh", "VIC", 3166 Suburb names can have multiple words, as can street…
bguiz
  • 27,371
  • 47
  • 154
  • 243
2
votes
1 answer

Understanding Pyparsing for street addresses

While searching for ways to build a better address locator for processing a single field address table I came across the Pyparsing module. On the Examples page there is a script called "streetAddressParser" (author unknown) that I've copied in full…
user18412
  • 125
  • 1
  • 5
2
votes
1 answer

Autocomplete Ajax - Get Complete list of Cities by State?

I just tried creating an Event on EventBrite and they have this nice autocomplete input for cities (start typing "san" and it will bring up "San Francisco, California..." and a list of others). What's the best way to do that? Do you need to store…
Lance
  • 75,200
  • 93
  • 289
  • 503