Top "Geopy" questions

geopy allows you to convert between partial place names and latitude/longitude coordinates by wrapping six different online API's and providing access through one standard interface.

new column with coordinates using geopy pandas

I have a df: import pandas as pd import numpy as np import datetime as DT import hmac from geopy.…

python pandas geopy
Find the county for a city, state

I have a city + state information and I'm trying to find the county. I tried a few things. The closest …

python geocoding geopy
Normalizing street addresses in Django/Python

I have a Django form where one of the fields is a TextInput for a street address. I want to …

python django django-models django-forms geopy
how to ignore AttributeError: 'NoneType'

location = geolocator.geocode(" ".join(address.values())) if location.longitude is not None: node['pos'] = [location.longitude, location.latitude] Don't understand …

python attributeerror nonetype geopy
Can I get the altitude with geopy in Python? (with Longitude/Latitude)

it is possible? i tryed: from geopy.point import Point from geopy import geocoders [...] p = Point(Latitude, Longitude) lat, lon, …

python latitude-longitude geopy
Timeout error in Python geopy geocoder

I am a relatively new Python user and am attempting to use a function to return the latitude and longitude …

python timeout geopy
error (429) Too Many Requests while geocoding with geopy in Python

I have a Pandas dataframe with ~20k rows, and I am trying to geocode by address column into lat/long …

python pandas geocoding geopy
Calculate distance between latitude and longitude in dataframe

I have 4 columns in my dataframe containing the following data: Start_latitude<br> Start_longitude<br> …

python pandas geopy
Calculating distance between *multiple* sets of geo coordinates in python

I am struggling to calculate the distance between multiple sets of latitude and longitude coordinates. In, short, I have found …

python numpy pandas distance geopy