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
1 answer

Google Geocode API - Indian Reservations

Why is it that no type is returned when the address component is an Indian Reservation? It is just returned as shown below, and because there is no type, it causes an error when trying to geocode addresses that return an Indian…
2
votes
3 answers

How I can get places with specific types using Google Places API?

I need all locations of type cafe, gas_station, and restaurant using Google Places Api. Here is my query via the API:…
Ajay
  • 370
  • 3
  • 6
  • 17
2
votes
2 answers

Find rows with a column value close to the one of the current row

I have a table in the following format: id lon lat 1 10.111 20.415 2 10.099 30.132 3 10.110 20.414 I would like to create a new column that returns all IDs such that lon and lat are less then a tolerance value away, i.e. abs(lon_i -…
gbox
  • 809
  • 1
  • 8
  • 22
2
votes
1 answer

Store the value in the cell after a custom function obtain this value / Google spreadsheet

I use the custom function: if (!address) { throw new Error("No address specified!"); } if (address.map) { return address.map(LATLONG); } const key = ["address", address].join(","); const value = getCache(key); if (value !== null) return…
AlexOn
  • 21
  • 4
2
votes
1 answer

Here API - geocode search using zipcode not returning city field

I am searching a City and state by zip code using below HERE API https://geocode.search.hereapi.com/v1/geocode?qq=postalCode=43026&apiKey=key&in=countryCode%3AUSA, but it's not returning city field. the result is below { "items": [ { "title":…
2
votes
1 answer

how to scrape twitter for a whole country using twint library

Hello I want to ask a question regarding scraping tweets from the Twitter using Twint library Basically, to scrape tweet from a specific location, it is needed to put geocoded data which is consist of 'latitude, longitude, radius' So my question…
2
votes
1 answer

Google Geocode ValueError

I'm currently trying to pull the latitude and longitude values from a series of addresses that are currently stored in a pandas dataframe. I have the following code currently: import pandas as pd from googlemaps import Client as…
Parth
  • 21
  • 2
2
votes
1 answer

Google geocode function returning undefined

function initMap() { const map = new google.maps.Map(document.getElementById("map"), { zoom: 15, center: {lat: 24.149950, lng: 120.638610}, mapId: '63d22d3ae6cf15ff' }); console.log(getCoordinates("Bouverie Street")); } //…
anon
2
votes
3 answers

VueJS: Not printing data returned in method

I'm successfully getting data into the console. When I try to print that data to the page by calling the method in double moustache braces it doesn't appear on screen. All other data in template appears just fine. Template: