Questions tagged [geocode]

Geocoding is a method to assign spatial coordinates - like longitude and latitude on the Earth's surface - to a data record or object which represents an address or other geographic data.

Geocoding is a method to assign spatial coordinates - like longitude and latitude on the Earth's surface - to a data record or object which represents an address or other geographic data.


Useful links


Related tags

756 questions
-1
votes
1 answer

Determining if Geocode falls within a Polygon/Series of Geocodes

I have a series of geocodes for a pre-defined area/polygon that represents a sales region. For example: -33.83585327701507, 151.2809005901216 -33.73335715102409, 150.8744770943904 -33.82163832733159, 150.8404448193081 -33.9974469167501,…
user982124
  • 4,416
  • 16
  • 65
  • 140
-1
votes
1 answer

Geocoding with Mapbox

Background: I have just finished a course on Udemy called The Web Development Bootcamp. The main project for this course was to create a web app called Yelpcamp, which is essentially a campsite rating and discussion site. You can see the current…
-1
votes
1 answer

Does Google's Geocoding API produce any quality code like Mapquest API generating the quality code for the addresses?

This is the JSON response of mapquest API which has this attribute below: { ... "geocodeQualityCode": "A5XAX" ... } likewise is there any implementation provided by Google API?
-1
votes
1 answer

CSV uploading issue

I am uploading csv files to https://geocoding.geo.census.gov/ for batch geocoding. After some python code to parse and separate files. I have to manually save each CSV file with excel as a csv again or I get an error "Malformed input file or file…
-1
votes
2 answers

Does Google Geocode work for anyone in 2018 is there an alternative?

Google Geocode use to work for me but does not anymore. Everything I've tried returns false. It doesn't even give a clue as to why. I've tried changing the API key, I've tried different methods to connect (I prefer using simplexml_load_file). It…
-1
votes
1 answer

Why geocode is not returning "invalid address" when component restriction is applied?

So I am using geocode service from Google Map APIv3. I have restricted search around 'Switzerland/CH'. But when I typed invalid characters like !x! or xz etc, I didn't get 'Invalid Address' rather I got 'Switzerland' as a result in…
-1
votes
2 answers

Google geocode api language issue

I want to get the results of google geocode api in English language. I am using the following link. It is returning the results in arabic language. Am I missing something…
Sohit
  • 13
  • 3
-1
votes
1 answer

Google map api geocoder.geocode return the same value

I want to get latitude and longtitude from multi postcode, but when I loop through postcode array to call geocoder.geocode method, it returns the same latitude and longtitude value. My source code is below var postcodeList = [ {postcode: "ON…
-1
votes
1 answer

Reverse Geocoding to show address

I have a script which I can't get working. I keep getting the error 'Geocoder failed' but I am not sure why. It is supposed to get the long/lat and then reverse geocode it to show the street address in an alert box. I have tried ensuring that the…
Martyn
  • 73
  • 1
  • 3
  • 14
-1
votes
1 answer

ZERO_RESULTS error geocode

$url = "https://maps.google.com/maps/api/geocode/json?address=".urlencode($address)."&sensor=false"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_PROXYPORT,…
Janus
  • 41
  • 3
-1
votes
1 answer

yesterday a lot of our address searches started "Geocode was not successful for the following reason: ZERO_RESULTS"

"Geocode was not successful for the following reason: ZERO_RESULTS" using google geocode api, non-premium, very low traffic, some addresses work issue is somehow localized to accessing from our servers, clients report no problems.
Curtis
  • 11
  • 1
-1
votes
2 answers

Geocode returns postal_code null for certain address

Geocode returns postal_code value null for certain addresses and I am not able to do reverse address lookup to retrieve the zip at that level. An example address is "Peachtree Dunwoody Road, Atlanta, GA, United States" There is no street number;…
-1
votes
1 answer

Geocoder suddenly stopped working

I am using Geocoder to get the lat and long in my android application. It was working fine some while back but now it just stopped working. I didn't change the code. Why this happned? public void onItemClick(AdapterView adapterView, View view, int…
-1
votes
1 answer

results[0].formatted_address return undefined or null

i am trying to get adress by a function where i just have to give latLong but i am with a real problem to save de value to return or return it simple function getadress(latLong){ var adress =""; geocoder.geocode( {'latLng': latLng}, …
-1
votes
2 answers

Geocode API returning zero results for valid lat/lng

Google reverse geocode api returning zero result when using lat/lng but returns correct result using place_id For example Calling below link(replace key with your API key) returns the…