Open source geocoding in Python
Project description
Whereabouts
Fast, scalable geocoding for Python using DuckDB. The geocoding algorithms are based on the following papers:
Description
Geocode addresses and reverse geocode coordinates directly from Python in your own environment.
- No additional database setup required. Uses DuckDB to run all queries
- No need to send data to an external geocoding API
- Fast (Geocode 1000s / sec and reverse geocode 200,000s / sec)
- Robust to typographical errors
Requirements
- Python 3.8+
- requirements.txt (found in repo)
Installation: via PIP
whereabouts can be installed either from this repo using pip / uv / conda
pip install whereabouts
1. Install depedencies
Install all the dependencies:
pip install -r requirements.txt
Download a geocoder database or create your own
You will need a geocoding database to match addresses against. You can either download a pre-built database or create your own using a dataset of high quality reference addresses for a given country, state or other geographic region.
1. Download a geocoder database
Pre-built geocoding database are available from Huggingface. The list of available databases can be found here
As an example, to install the small size geocoder database for all of Australia:
python -m whereabouts download au_all_sm
2. Create a geocoder database
You can create your own geocoder database if you have your own address file. This file should be a single csv or parquet file with the following columns:
Column name | Description | Data type |
---|---|---|
ADDRESS_DETAIL_PID | Unique identifier for address | int |
ADDRESS_LABEL | The full address | str |
ADDRESS_SITE_NAME | Name of the site. This is usually null | str |
LOCALITY_NAME | Name of the suburb or locality | str |
POSTCODE | Postcode of address | int |
STATE | State | str |
LATITUDE | Latitude of geocoded address | float |
LONGITUDE | Longitude of geocoded address | float |
These fields should be specified in a setup.yml
file. Once the setup.yml
is created and a reference dataset is available, the geocoding database can be created:
python -m whereabouts setup_geocoder setup.yml
Geocoding examples
Geocode a list of addresses
from whereabouts.Matcher import Matcher
matcher = Matcher(db_name='gnaf_au')
matcher.geocode(addresslist, how='standard')
For more accurate geocoding you can use trigram phrases rather than token phrases (note that the trigram option has to have been specified in the setup.yml file as part of the setup)
matcher.geocode(addresslist, how='trigram')
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
Built Distribution
File details
Details for the file whereabouts-0.3.12.tar.gz
.
File metadata
- Download URL: whereabouts-0.3.12.tar.gz
- Upload date:
- Size: 18.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.2 Darwin/23.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 945ad4147ea9691a908e1cb6acd22af0817674924e4744c94368d844563d04b4 |
|
MD5 | a6e94ede4a46da533f29933ac45b6623 |
|
BLAKE2b-256 | 11b590efd0dcf91682e91af67a4245f3f3cb39c6965569509a2b515d66585a0b |
File details
Details for the file whereabouts-0.3.12-py3-none-any.whl
.
File metadata
- Download URL: whereabouts-0.3.12-py3-none-any.whl
- Upload date:
- Size: 33.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.2 Darwin/23.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9e8f0e88920fac4d5fe1436564a4302aef7da1bb21d6ac0c081974660a3393eb |
|
MD5 | ceff0a698927ec0558f645f38234be2a |
|
BLAKE2b-256 | 0272386a57dc56a4107e26352d2752db3623df9a106d97cd773d8d44d16dc19a |