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

Where do websites get UK addresses from?

When you have to enter an address lookup table on Amazon or another website (talking about UK specifically) where does the site get that info from? Is there a .gov table of everyone's addresses or does the website themselves have a database all them…
Harry
  • 3
  • 2
-2
votes
1 answer

How to get country, postal code, locality and sub-locality if address_component not provided in the places from google map?

function getAddress(results){ var address = {}; for (i = 0; i < results[0].address_components.length; ++i){ for (j = 0; j < results[0].address_components[i].types.length; ++j) { if (!country &&…
-2
votes
1 answer

Is it possible to filter address based upon 360 degree geolocation area?

I am currently looking to provide a feature on my developing website that will enable user/visitors to see whether there specific address is within the unique service area of my business. If so allowing them to proceed further or if not plug them…
TCat
  • 1
-2
votes
2 answers

How can i cast a EditText into an Address?

I'm trying to get a cast of an Address on a EditText. There is not syntax errors, but the LogCat throws a casting error message, and it doesn't work. geoPoint((Address)direction.getText()); // this is the cast Where direction is an EditText, and…
Jota
  • 17
  • 6
-3
votes
2 answers

How to split a Swiss address into a street and a zip code in Python?

I am looking for a solution to split a representative Swiss address into a street (and street number) and a zip code (and name of place). Suggest, I have the following address: 'Bahnhofstrasse 1, 8001 Zürich' The result I am looking for is: street:…
Patrick Balada
  • 1,330
  • 1
  • 18
  • 37
-3
votes
5 answers

Getting a list of all churches in a certain state using Python

I am pretty good with Python, so pseudo-code will suffice when details are trivial. Please get me started on the task - how do go about crawling the net for the snail mail addresses of churches in my state. Once I have a one liner such as "123 Old…
Hamish Grubijan
  • 10,562
  • 23
  • 99
  • 147
-5
votes
4 answers

Street Address Validation with PHP

I need to validate a complete address using php and regex. This is what i have created so far.
dev1234
  • 5,376
  • 15
  • 56
  • 115
1 2 3
38
39