Natural Language Geocoding implements an AI technique to convert natural language descriptions of spatial areas into polygons.
- Add integration tests
- Can have them just run locally for now
- Add unit tests
pip install natural-language-geocoding
natural-language-geocoding init
Set the NOMINATIM_USER_AGENT
environment variable to identify your application with the Nominatim API.
There's a streamlit demo in src/natural_language_geocoding_demo
. It can be run by following these steps.
- Set up AWS credentials. The demo uses AWS Bedrock Anthropic Claude as the LLM. Valid AWS access keys to an account need to be present.
- Follow steps for local development
- Run
NOMINATIM_USER_AGENT=your-nominatim-user-agent scripts/run_demo.sh
- It will open in your browser
- Install python and uv
- Checkout the code
- Run
scripts/recreate_venv.sh
- Run
PYTHONPATH=src python src/natural_language_geocoding/main.py init
- Run
pre-commit install
to install the pre commit checks - Make changes
- Verify linting passes
scripts/lint.sh
- Commit and push your changes
This library uses the OpenStreetMap Nominatim API for geocoding. Users of this library must follow OpenStreetMap's attribution guidelines
Users must also conform to the Nominatim Usage Policy. The environment variable NOMINATIM_USER_AGENT
should be set to identify your application.
This library uses coastlines from https://github.com/martynafford/natural-earth-geojson which is distributed under the CC0-1.0 license. These are downloaded when the project is initialized.