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
2 answers

Is there a python module, which can turn geocoordinates into the name of the corresponding city?

I have a bunch of coordinates and I want to transform them to human readable addresses. Is there a way to achieve this? It would be great if i can get the name of the city where the coordinates are located in.
Aufwind
  • 25,310
  • 38
  • 109
  • 154
1
vote
4 answers

VBA Excel split the string apart based on the last comma

I would like to split my string in Excel between the address and postcode. I want to keep the postcode separately. By selecting the option - Data -Text to column - delimited - comma-separated - the whole string is divided by 4 pieces, as 3 commas…
Geographos
  • 827
  • 2
  • 23
  • 57
1
vote
2 answers

Excel extract one word from the any part of the string

I have the string containing the address, which sections are divided by commas. Outside Locksbrook Campus (Bath Spa University) Locksbrook Road, Bath, CB1 3QQ located in the D19 cell I would like to extract the name of the city from this string,…
Geographos
  • 827
  • 2
  • 23
  • 57
1
vote
2 answers

Android: Does Address(from GeoCode) have fixed format?

I need to determine the address for a geo location, so I used GeoCoder and Address, I tried to print an Address object and got the following: (for privacy reason, I used some fake data, but the data I received on my device is…
Heuristic
  • 5,087
  • 9
  • 54
  • 94
1
vote
1 answer

How do I use the Address formats in i18napis?

I'm am trying to use the i18napis.appspot.com/address address formats for a React application so that I can create localized address forms, but it's not clear to me how to use it. For example, this is the info for Germany: { zipex:…
1
vote
1 answer

Design an address and a customer model

I have encountered a problem, when I was designing an address and a customer classes (models). class Customer (String) first_name (String) last_name (String) document_id (String) phone (String) email (Address)…
Matt Harasymczuk
  • 1,728
  • 2
  • 21
  • 29
1
vote
1 answer

How do I geocode a Colombian address using Python 3 and geopy 1.21.0?

I have been trying to geocode Colombian addresses but the resulting coordinates are not accurate at all. For example: from geopy.geocoders import Nominatim gc = Nominatim(user_agent="my_geocode_app") gc.geocode("Calle 121 #48-60, Bogota") The…
1
vote
0 answers

Generate random consistent addresses

There's a way to create random consistent addresses with Faker? https://github.com/DiUS/java-faker I need a street which belongs to a city and a city which belongs to a county and procince. I also tried new Faker(new Locale(en-US)) but addresses…
MrKnorke
  • 163
  • 1
  • 1
  • 10
1
vote
0 answers

Google Maps 'Place Autocomplete' Not Finding Addresses with Apartment & Number Range

Google's 'Place Autocomplete' doesn't show any results for an address with an apartment number and street number range e.g. "2/61-69 Macquarie St, Sydney NSW 2000" (apartment 2, of the building located at 61-69 Macquarie Street). However, it does…
will
  • 153
  • 3
  • 6
1
vote
1 answer

Eliminate a city (PHP)

Background: I am attempting to run some addresses through an API to get GPS coordinates for routing purposes. The front end interface is simple. instead of dragging you through a description, here's a screen capture of it Front end…
1
vote
1 answer

How to get all detail of address when i am put mark on google map. and then it will fill up in text box in flutter

I want to put a marker on the map and when I put marker it will get that address and filled into the textbox. like I've mentioned in this images when I put a marker and then click on show address it will take that address and filled into textboxes.…
1
vote
2 answers

Geolocation from form

I have a Javascript form where a user inputs an address, city, and state. When this form is submitted, I want the address to be converted into latitude and longitude, and to store those two values to a database. Any help at all is greatly…
Fusionice
  • 131
  • 1
  • 2
  • 9
1
vote
3 answers

How to get address suggestions for some incompletly user entered address?

I tried faircab app and it has a nice feature, where you can enter start and stop address. You can just enter e.g. "empire state" and when you press a button, it will suggest you "empire state building" and it's complete address (or even more…
DixieFlatline
  • 7,895
  • 24
  • 95
  • 147
1
vote
1 answer

What's the best way to compare two street addresses?

I want to compare two postal addresses, Will it be a bad practice to consider addresses as strings and compare the similarity between them. Is there a standard algorithm that to implement in the programming language I use? or is there a free api to…
user2222
  • 444
  • 2
  • 8
  • 18
1
vote
0 answers

React: Autocomplete address fields

I'm working on react project,I'm trying to make a form where the user can fill in his address in separate fields (country, city, street, zip code, house number) with an autocomplete option, so that the possible city values are filtered based on the…