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

geocoder.geocode service fails with REQUEST_DENIED

Geocode service call is not working for the past few weeks, below URL is called https://maps.googleapis.com/maps/api/js/GeocodeService.Search? Using the right APIKey. so manually executed the url and getting the below error /**/xdc._5x72we &&…
Gopz
  • 21
  • 2
2
votes
1 answer

persian arguments of geocode doesn't work in persian system locale

I have a list of some districts in the city of Tehran which are saved in Persian in a CSV file. My first goal is to find these districts lat-lon. In order to load them correctly, I should set the system's locale to "Persian" Sys.setlocale(locale =…
mjoudy
  • 149
  • 1
  • 1
  • 10
2
votes
1 answer

Restricted Google API key is not working in Reverse Geocoding

I have develop an iPhone Application that have Google Api https://maps.googleapis.com/maps/api/geocode/json?latlng=%f,%f&key=API_KEY if I have use Public apikey then its working fine but when I generate ristricted api key from google concole then…
2
votes
0 answers

can't get all the geocodes for Fortune500 with google API

I was using google map API to get the coordinates for Fortune500 companies with geoocode However, when I ran it, it still showed OVER_QUERY_LIMIT periodically and thus my geocode list is not complete. So I have 2 questions: how to get all the…
Edward Lin
  • 609
  • 1
  • 9
  • 16
2
votes
1 answer

How to geocode a table of invalid/incorrect locations in R?

I have collected data of different users' location from twitter. I am trying to plot those data in a map in R. The problem is users have given invalid/incorrect addresses which causes geocode function to fail. How can I avoid this failure? Is there…
2
votes
1 answer

Hierarchical Fuzzy matching strategy for address matching

I am building an address matching module in R, where I would like to find a match of a list of inAddress against a database of all addresses dbAddress using R. Let's say the address contains street number, street name, postal code, city to be…
Kenny
  • 1,902
  • 6
  • 32
  • 61
2
votes
1 answer

r ggmap geocode query max exceeded despite pay as you go?

I'm using the ggmpap geocode function to geocode a long list of addresses. I'm aware of google's 2500 free query limit, but I've signed up to pay as you go for additional requests. I've used my API key in register_google(key =…
CJay
  • 21
  • 1
2
votes
2 answers

Geocode in Twitter API doesn't work

Can somebody tell me about Twitter Search API with geolocation filter? I'm trying to use GET…
2
votes
1 answer

Zip code radius search using Google Geocoder API

Here is a link to the same question. I would however like to have this question answered using Google Geocode. Can someone please provide me with the code to do the following, using Meteor and Blaze. Enter zip code and return array of zip codes…
user3323307
  • 243
  • 4
  • 13
2
votes
2 answers

How do I reverse geocode a large number of points in python?

Right now I have a GeoJson File and the following function using shapely: It takes in a coordinate and returns the neighborhood name def get_neighb(lat, lon): """Input Latitude and Longitude, Returns Neighborhood Name""" point =…
2
votes
2 answers

Code to Get GPS Coordinates from Address (VB/VB.Net/VBA/VBScript)

I believe the Google API allows you to get coordinates for a given address. However, most (or should I say all) of the examples I've found aren't for vb. Usually it's some javascript example that just leaves me confused. Here's some code I have that…
HK1
  • 11,941
  • 14
  • 64
  • 99
2
votes
4 answers

Update geocode latitude and longitude everytime address is updated

I have this in my shop.rb: def geocode_address if !address_geo.blank? geo=Geokit::Geocoders::MultiGeocoder.geocode(address_geo) errors.add(:address, "Could not Geocode address") if !geo.success self.lat, self.lng = geo.lat,geo.lng if…
Victor
  • 13,010
  • 18
  • 83
  • 146
2
votes
2 answers

How to Properly Format geocodeAddresses POST with ArcGIS REST

I am able to successfully process a batch geocoding request (described here geocodeAddresses—ArcGIS REST API: World Geocoding Service | ArcGIS for Developers ) using a GET request. However, I know I will want to use the POST method as the…
akoumjian
  • 1,594
  • 1
  • 15
  • 20
2
votes
2 answers

Xamarin android get address based on latitude and longitude

Im new new to xamarin Android....I have an app which shows users current latitude and longitude which seems to be working... Now, from latitude and longitude, Im trying to get address using API Geocoder. Im passing proper latitude and longitude but…
user1641519
  • 377
  • 1
  • 4
  • 17
2
votes
1 answer

Extracting lat/lon from geocode result list with Python (Google Maps API)

I'm attempting to use the Google Maps API with the GoogleMaps Python library to geocode latitude/longitude when provided with whole or part of an address (in this example, I'm using city/state, but I also have datasets with just zip codes that I'll…