Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/harmanveer-2546/geopy
Exploring and Learned basic functionality of Geopy in this repo.
https://github.com/harmanveer-2546/geopy
api geocoding geolocation geopy latitude-and-longitude pandas python timezone
Last synced: about 2 months ago
JSON representation
Exploring and Learned basic functionality of Geopy in this repo.
- Host: GitHub
- URL: https://github.com/harmanveer-2546/geopy
- Owner: harmanveer-2546
- Created: 2024-05-27T08:59:11.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-05-27T09:03:02.000Z (7 months ago)
- Last Synced: 2024-05-30T17:37:50.601Z (7 months ago)
- Topics: api, geocoding, geolocation, geopy, latitude-and-longitude, pandas, python, timezone
- Language: Jupyter Notebook
- Homepage: https://geopy.readthedocs.io/en/stable/
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Introduction
Longitude and latitude are great measures to obtain relatively precise locations of the observations, but oftentimes these coordinates alone do not tell enough stories.
How can we easily convert these measures to something more meaningful?## GEOPY
Geopy is a Python client for several popular geocoding web services.Geopy makes it easy for Python developers to locate the coordinates of addresses, cities, countries, and landmarks
across the globe using third-party geocoders and other data sources.
Geopy includes geocoder classes for the OpenStreetMap Nominatim, Google Geocoding API (V3), and many other geocoding services.
The full list is available on the Geocoders doc section. Geocoder classes are located in geopy.geocoders.
We can do many things with these coordinates using the Geopy library. Geopy can calculate the distance between different points,
it can also make an API call on our behalf to get information about these coordinates.