Nominatim/packaging/nominatim-db
Sarah Hoffmann b54ff7d766 remove all references to a module path
No longer used now that legacy tokenizer is gone.
2024-09-21 17:39:01 +02:00
..
extra_src/nominatim_db remove remaining references to php code 2024-09-15 15:33:59 +02:00
scripts remove all references to a module path 2024-09-21 17:39:01 +02:00
COPYING switch to symlink approach for packages 2024-06-26 11:52:47 +02:00
data reduce from 3 to 2 packages 2024-06-28 09:13:22 +02:00
lib-sql reduce from 3 to 2 packages 2024-06-28 09:13:22 +02:00
pyproject.toml fix dependencies and adapt documentation for psycopg3 2024-07-29 08:54:09 +02:00
README.md improve wording 2024-06-29 16:27:26 +02:00
settings reduce from 3 to 2 packages 2024-06-28 09:13:22 +02:00
src switch to symlink approach for packages 2024-06-26 11:52:47 +02:00

Nominatim - DB Backend

Nominatim is a tool to search OpenStreetMap data by name and address (geocoding) and to generate synthetic addresses of OSM points (reverse geocoding).

This module implements the database backend for Nominatim and the command-line tool for importing and maintaining the database.

Installation

Prerequisites

Nominatim requires osm2pgsql (>=1.8) for reading OSM data and PostgreSQL (>=9.6) to store the data.

On Ubuntu (>=23.04) and Debian (when using backports), you can install them with:

sudo apt-get install osm2pgsql postgresql-postgis

Installation from pypi

To install Nominatim from pypi, run:

pip install nominatim-db

Quick start

First create a project directory for your new Nominatim database, which is the space for additional configuration and customization:

mkdir nominatim-project

Make sure you run all nominatim commands from within the project directory:

cd nominatim-project

Download an appropriate data extract, for example from Geofabrik and import the file:

nominatim import --osm-file <downlaoded-osm-data.pbf>

You will need to install the nominatim-api package to query the database.

Documentation

A HTML version of the documentation can be found at https://nominatim.org/release-docs/latest/ .

License

The source code is available under a GPLv3 license.