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
0
votes
3 answers

What would be the best schema to store the 'address' for different entities?

Suppose we're making a system where we have to store the addrees for buildings, persons, cars, etc. The address 'format' should be something like: State (From a State list) County (From a County List) Street (free text, like '5th Avenue') Number…
Cesar
  • 4,076
  • 8
  • 44
  • 68
0
votes
1 answer

Why am I unable to set pin address to annotation's subtitle?

Trying to set address of pin position to annotation subtitle if it == nil. But nothing happens. if (myAnnotation.subtitle == nil) [self.geoCoder reverseGeocodeLocation: locationManager.location completionHandler: …
Pavel Kaljunen
  • 1,291
  • 2
  • 26
  • 53
0
votes
1 answer

Optimizing address routes - web-based

We are trying to better understand how to set up MapPoint (or another map application) to optimize delivery routes for us. We have the ability to push lists of delivery addresses from our .NET system but need some simple options for the drivers to…
sessler
0
votes
1 answer

address finder using post codes in magento1.6

After searching the web and seeing that the PAF file is not free I'm guessing there is no way to do this.. but.. does anyone know of a free system that can find a list of address with a postcode. It just seems odd to me that google can show all…
0
votes
1 answer

How to check address is correct or not in Android?

I am creating an application in Android where I ask user to enter his address.There are chances that a user can enter wrong address so how can I check that the entered address is correct or not. Please Help
Arun Badole
  • 10,977
  • 19
  • 67
  • 96
0
votes
1 answer

Does UPS Address Validation API works in mobile app?

I am learning UPS address validation API for my PHP application. Going to use web service version for my integration. However I am not sure whether UPS address validation will work for mobile app or not like iPhone or Android app. Can someone answer…
user1277719
  • 99
  • 3
  • 6
0
votes
4 answers

How to retrieve city and country through IP address in PHP

I am trying to make a log of users heading to my website. I want to save their IP addresses, as well as city and country info. Thanks in Advance.
yusufiqbalpk
  • 282
  • 1
  • 6
  • 18
0
votes
2 answers

How to go about getting the physical address of a location in a file in Linux

I am trying to get the (physical) location associated with a particular byte inside a file. How would I go about doing that? I can't do this in C, because I would have to read the file into a buffer and if I tried getting the physical (not virtual)…
Falcata
  • 679
  • 1
  • 15
  • 23
-1
votes
1 answer

Storing a structured address vs. a string for a user's address

I am diving in to using the Azure Maps service and while it can accept a StructuredAddress, it seems to prefer that it get the address as a string. In other words, it wants: var addr = "15127 NE 24th Street, Redmond, WA 98052 US" instead of: var…
David Thielen
  • 28,723
  • 34
  • 119
  • 193
-1
votes
1 answer

Oracle SQL column comparison

I have two columns and I would like to make a comparison to find out if they are equal, the problem is when same keyword is written in different way. For example if column_1 = 123 Maryland Ave and column_2 = 123 Maryland Avenue these two column…
Nari
  • 30
  • 1
  • 3
-1
votes
1 answer

What is the best way to work with a huge address database for autosuggest?

I have a database of about 300,000,000 addresses for a country. This data is supposed to be used for auto-suggest in a form, i.e: if the address is 1900 Country Hill Road, user would type Count (assuming at least 3 characters to trigger auto-suggest…
Fid
  • 462
  • 4
  • 21
-1
votes
1 answer

Excel IF statement for trim function

Good afternoon, I would like to have a fixed trim address, when it's possible. My address is: ** 15-21 Bournemouth rd, Aberdeen, AB11 6YA** I want to get rid of the postcode and keep the address form like this: 15-21 Bournemouth rd, Aberdeen, In…
Geographos
  • 827
  • 2
  • 23
  • 57
-1
votes
1 answer

Error while using Google's findplacefromtext - InvalidURL

I am trying to get details for addresses using Google API's findplacefromtext. This is how my code looks like: def get_google_address(address): API_KEY = 'MY_API_KEY' URL =…
Sarvavyapi
  • 810
  • 3
  • 23
  • 35
-1
votes
1 answer

Google Address Suggestions country restrictions does not working properly

To add country restrictions for google address suggestions, we can just add autocomplete.setComponentRestrictions({"country":["US"]}); //Display US address only autocomplete.setComponentRestrictions({"country":["US","CA"]}); //Display US, CA…
Akhil Gupta
  • 187
  • 3
  • 13
-1
votes
2 answers

Remove unit number clause from street address string in R

I'm using R for geocoding. Some of my street addresses include unit numbers and I need to remove those before geocoding, but I'm not very good at regex commands. How could I transform addresses like these: 10 Fake St, Unit #5, New York, NY 10001 10…
user3786999
  • 1,037
  • 3
  • 13
  • 24