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

Convert street address to coordinates and place in html

I have the javascript to convert street address to coordinates. But I want is when a user types in an address in an input field, the javascript converts it into lat and lng and places the result in a p div, say below the input field. The JS code I…
Darron Donaldson
  • 291
  • 1
  • 2
  • 15
0
votes
1 answer

Windows Phone 8: get current Address -Data (from your current location)

Im trying to implement a button which fills after click Latitude Longitude Street Streetnumber Postalcode City myGeoposition.CivicAddress. gives me City and Postalcode myGeoposition.Coordinate. gives me the Lati/Longitude where do I get the…
IntegerWolf
  • 1,232
  • 1
  • 11
  • 21
0
votes
3 answers

Extract house numbers from address string

I am importing user data from a foreign database on demand. While i keep house numbers separate from the street names, the other database does not. I use preg_match_all('!\d+!') To rule out the numbers. This works fine for an addressline like…
SquareCat
  • 5,699
  • 9
  • 41
  • 75
0
votes
4 answers

How do I get city, state, and post code from a street address?

Are there any gems/ways that would allow me to retrieve a city, state, and postal code from a street address? For example: results = Search.find("100 Rue de la Paix") results.each do |address| address.city => "Timbuktu" address.state …
user2630970
  • 153
  • 2
  • 11
0
votes
1 answer

How to deal with State, County, City relations? (for US 50 states)

From the 50 states of US, most of them have counties except Louisiana and Alaska. My tables would look like this **State_tbl** State_id State_name **County_tbl** County_id State_id ->state_tbl County_name **City_tbl** City_id County_id…
Cristian
  • 2,390
  • 6
  • 27
  • 40
0
votes
1 answer

Google Maps API v3 business version returns different address suggestions than the public one

I am using Google Maps v3 (Javascript) for the product I am working on. When given an ambiguous address, like so: 4701 Monte, Austin,,22153 the business api version, suggests the following 2 address: 6000 Shepherd Mountain Cove, Austin, TX…
iyerland
  • 632
  • 2
  • 10
  • 24
0
votes
1 answer

Format for representing GIS data

Is there open data format for representing such GIS data as roads, localities, sublocalities, countries, buildings, etc. I expect that format would define address structure and names for components of address. What I need is a data format to return…
zaquest
  • 2,030
  • 17
  • 25
0
votes
1 answer

Updating map automatically when address is changed manually

I have a site where I will be manually changing street addresses. I want to include a map link but I want it to update itself automatically when I change addresses... Also, I'd like the link to send the address field to google maps or mapquest and…
user186815
0
votes
3 answers

Zip code size test C#

I have a small piece of code that I have been trying to get to work, but nope. So I've come to the experts. I'm trying to test a zip code entry and limit it to 5 digits only. My first issue is with the attached code. It doesn't seem to be counting …
user2297683
  • 406
  • 1
  • 5
  • 15
0
votes
3 answers

MySQL - display rows of names and addresses grouped by name, where name occures more than once

I have two tables, "name" and "address". I would like to list the last_name and joined address.street_address of all last_name in table "name" that occur more than once in table "name". The two tables are joined on the column "name_id". The desired…
Stoob
  • 2,177
  • 4
  • 19
  • 22
0
votes
2 answers

DBpedia : Get list of Chinese universities and their adresses to populate google map?

I'm trying to get list of Chinese universities and their adresses. The minimum being the City/Town name. I will use these addresses to populate a googlemap, fiddle here. I saw interesting code such as: SELECT ?resource ?value WHERE { ?resource a…
Hugolpz
  • 17,296
  • 26
  • 100
  • 187
0
votes
2 answers

PHP - regex for converting address formats between osCommerce and OpenCart?

I need to import an entire e-shop made with osCommerce into OpenCart. So far, so good. I have successfully imported almost everything, except for SEO and some sparse data bits, but I have a problem with the address format. osCommerce uses $firstname…
Julio María Meca Hansen
  • 1,303
  • 1
  • 17
  • 37
0
votes
2 answers

How to programmatically drop a pegman on click of a point in the map

How will I be able to drop the pegman programmatically on a point on a map. I have a "click" event of the map. I need to drop the pegman on the coordinates where it was clicked.
coderslay
  • 13,960
  • 31
  • 73
  • 121
0
votes
2 answers

GoogleMaps / JS: How with a list of street address can we populate a Google Map?

Given JSON data such as a list of real, unique, valid addresses: var data = [ { "address": "48 rue des Grands Moulins, 75013, Paris"}, { "address": "12_rue_des_Grands_Moulins,_75013,_Paris"}, { "address":…
0
votes
0 answers

Why is a portion of the address missing with my geocoding call?

Passing the google geocoder the postal code: W11 2BQ I would expect to see England as part of the returned address but this isn't the case. Am I missing the obvious? Here is the…
Paul
  • 11,671
  • 32
  • 91
  • 143