The "here-geocoding" package is a Python library designed to streamline the process of converting addresses stored in an Excel (xlsx) file into latitude and longitude coordinates. It provides a convenient solution for geocoding large sets of addresses using the HERE geocoding service.
Project description
here-geocoding
The “here-geocoding” package is a Python library designed to streamline the process of converting addresses stored in an Excel (xlsx) file into latitude and longitude coordinates. It provides a convenient solution for geocoding large sets of addresses using the HERE geocoding service.
The package is based on the: https://github.com/heremaps/here-location-services-python
Free software: MIT license
Documentation: https://here-geocoding.readthedocs.io.
How to install
Environments -> base (root) -> open terminal -> pip install here-geocoding
pip install here-geocoding
Example
Find the api key: https://platform.here.com/admin/apps/
from here_geocoding import geocoding
api_key = 'YOUR API KEY' # OK
d = geocoding(api_key=api_key)
# Example 1
lng, lat = d.address_to_lnglat(address='1 Panepistimiou Ave., Aglantzia, 2109, Nicosia, Cyprus')
print(lng, lat)
# Example 2
lng, lat = d.address_to_lnglat(address='Perikleous 94, Nicosia',
bbox=[33.34597224, 35.13605854, 33.36261015, 35.14613025])
print(lng, lat)
# Example 3
data_geojson = d.address_to_lnglat(address='1 Panepistimiou Ave., Aglantzia, 2109, Nicosia, Cyprus', geojson=True)
print(data_geojson)
# Example 4
# using as example the csv file from: https://github.com/geocommons/geocoder/blob/master/test/data/address-sample.csv
d.geocode_excel(file_path='address-sample.xlsx', start_row=-1, end_row=20, address_column='address', bbox=None,
to_crs=None, export_file_name='test', export_file_type='csv')
# Example 5
d.geocode_excel(file_path='address-sample.xlsx', start_row=-1, end_row=20, address_column='address', bbox=None,
to_crs=None, export_file_name='test', export_file_type='geojson')
Features
TODO
Credits
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.
History
0.1.0 (2023-06-09)
First release on PyPI.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file here_geocoding-0.3.0.tar.gz
.
File metadata
- Download URL: here_geocoding-0.3.0.tar.gz
- Upload date:
- Size: 25.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 32ab2303d79c93f1f23393cea1fda6dcaec35fdf366c322c7c1dd5f93b73ad2a |
|
MD5 | 160cecaa5607be743fe2cc1967d23c07 |
|
BLAKE2b-256 | 4ad1f7bace84a939679ad9a0bc51164cc9151d650afb266331d42f993fff6a63 |