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

How to set the table cell value to address returned by geocode API

I want to set the value of table cell to the address returned by the geocode api. {{addr}} the controller method written by me is as follows. this.getAddress = function(lat,lng) { console.log('x.lat ' + lat + ' x.lng ' + lng); var p…
Satya Narayana
  • 454
  • 6
  • 20
0
votes
0 answers

How to convert latitude and longitude to XY coordinates on a map image .png

So i have a set of latitude and longitude co-ordinates. I want to plot these points on a cropped map image. How do i convert these co-ordinates to XY points on the map. This is the image on which i want to plot the points Few Sample points Latitude…
Sarthak Mishra
  • 1,033
  • 1
  • 11
  • 27
0
votes
1 answer

Country name from geolocation in a new column

I'm new to Python and using Pandas dataframes. I'm trying to create a new column in a dataframe of country names composed from latitude and longitude records via reverse geocoding, but I'm having some troubles. This works perfectly, and returns name…
241095
  • 1
  • 1
0
votes
1 answer

Using geocode API in twitter search

My code works perfectly fine. It has a form where users have to enter a keyword and it will give them a Twitter search results for that keyword. How can I add the user's IP address or location in the results using geocode? This is my…
momo
  • 1
  • 3
0
votes
1 answer

Bing maps geocode, use session key with search manager class?

I need to use the session key with my geocode requests to limit my billable transactions. The search manager class takes the map as an argument but I see no way to set the session key. Cursory investigation with Charles seems to indicate it doesn't…
Chase R Lewis
  • 2,119
  • 1
  • 22
  • 47
0
votes
1 answer

Geolocation rtweet search_tweet R

Does search_tweets function from rtweet package has parameters that allow me to filter by geolocation, equivalent to search_tweets parameter "geocode = '40.757343,-73.848261,40km'"?
anitasp
  • 577
  • 4
  • 13
  • 35
0
votes
1 answer

How to get to the JSON text using the VBnet standard browser

Sorry it is difficult to provide code for this. In a normal browser (firefox, IE etc) when I enter a Google Geo Code API URL https://maps.googleapis.com/maps/api/geocode/xml?address=&key= with myAddress and mykey set correctly. I get a the JSON…
0
votes
2 answers

Getting "null" reverseGeocodeCoordinate method with GMSMap in iOS?

I am using the following code to get address from lat and long: NSLog(@">>>>%f,%f",location.latitude,location.longitude); [[GMSGeocoder geocoder] reverseGeocodeCoordinate:location completionHandler:^(GMSReverseGeocodeResponse *resp, NSError…
0
votes
1 answer

Url not loading error on geocoding requests

I previously had a Google geocoding script working to extract longitude and latitude using local addresses in a database. In the last 6 months I've switched hosts, and apparently Google has implemented a new forward geocoder. Now it just returns…
Keith
  • 312
  • 2
  • 12
0
votes
1 answer

Finding the overlapping locations for a 5 mile and 10 mile radius for a list of location data with latittude and longitude

I have a 10,000 observation dataset with a list of location information looking like this: ADDRESS | CITY | STATE | ZIP |LATITUDE |LONGITUDE 1189 Beall Ave | Wooster | OH | 44691 | 40.8110501 …
V_N
  • 23
  • 4
0
votes
2 answers

Geocode on form submit

I've searched through a number of support forums and I still can't find the answer I'm looking for. Essentially, I have a user registration form on my website. When the user clicks "submit" it saves their data in a mySQL database and redirects…
Jeremy
  • 19
  • 2
0
votes
1 answer

How to determine UTM zone from UTM co-ordinates

I am trying to convert the UTM coordinates ( 552123.07 4182282.11 ) into Latitude and Longitude so That i can plot it on a Map provider like google or leaflet. Can anybody please help me in determining how to convert UTM coordinates to…
Rohit S.
  • 11
  • 2
0
votes
1 answer

google-maps geocoding API no results

Can some please tell me why this call to Google geocoding API returns no results. https://maps.googleapis.com/maps/api/geocode/json?address=1226%20Freeport%20Road+Defuniak%20Springs+FL+32433
NShaik
  • 13
  • 4
0
votes
1 answer

How to Animate markers using GMLib and LoadFromDataset

I am using Delphi Berlin with the GMLib v3 Google Map Components on a Windows 10 64bit development machine. I would like to be able to animate the locations when clicking on the marker or grid when using the LoadFromDataSet function of the GMMarker…
0
votes
1 answer

tweepy 3.5 search geocode returns empty list

I am trying to get tweets around an specific location using python 3.4 and tweepy 3.5.0. First, I create an api object: >>> api = tweepy.API(auth) Then, if I call create with just a query, I get a lot of results: >>>…
Pablo Guerrero
  • 936
  • 1
  • 12
  • 22