Open Source search based on OpenStreetMap data
Go to file
Sarah Hoffmann 79836e51d6
Merge pull request #3593 from lonvia/order-by-bbox
Use bbox size for secondary order of results
2024-11-19 11:50:55 +01:00
.github switch actions to pip-based install 2024-11-18 18:52:26 +01:00
data modify data import logic to load country names from yaml 2022-03-12 15:20:57 +08:00
docs remove cmake and related installation instructions 2024-11-18 18:51:03 +01:00
lib-sql remove code only needed for older PostgreSQL/PostGIS versions 2024-11-18 10:11:09 +01:00
LICENSES update licenses and discussion links 2024-06-26 11:52:47 +02:00
man build man page without CMake 2024-08-07 16:38:56 +02:00
munin docs: fix typos 2022-07-20 22:05:31 +08:00
packaging remove all references to a module path 2024-09-21 17:39:01 +02:00
settings remove documentation around legacy tokenizer 2024-09-21 18:27:01 +02:00
src use bbox size for secondary order of results 2024-11-19 10:38:50 +01:00
test adapt BDD tests to changed simplification 2024-11-18 13:02:35 +01:00
utils port multi-region update scripts to nominatim tool 2021-08-14 23:55:48 +02:00
vagrant update Ubuntu22 install script for pip install 2024-11-18 18:51:54 +01:00
.codespellrc Github Actions: add codespell linter, warn only 2024-03-04 00:22:24 +01:00
.flake8 replace pylint with flake8 everywhere 2024-11-10 23:14:09 +01:00
.gitignore move generated docs to site-html 2024-08-07 16:48:22 +02:00
.gitmodules remove vendored osm2pgsql 2024-11-18 13:38:03 +01:00
.mypy.ini add SQLAlchemy table schema for Nominatim tables 2023-01-28 11:51:26 +01:00
AUTHORS add consistent SPDX copyright headers 2022-01-03 16:23:58 +01:00
ChangeLog prepare 4.5.0 release 2024-09-11 17:51:38 +02:00
CONTRIBUTING.md update release instructions 2024-11-19 09:17:50 +01:00
COPYING update licenses and discussion links 2024-06-26 11:52:47 +02:00
Makefile replace pylint with flake8 everywhere 2024-11-10 23:14:09 +01:00
mkdocs.yml docs: remove all references to PHP 2024-09-15 16:08:26 +02:00
nominatim-cli.py add script for in-source execution 2024-06-26 11:52:47 +02:00
README.md remove cmake and related installation instructions 2024-11-18 18:51:03 +01:00
SECURITY.md prepare 4.5.0 release 2024-09-11 17:51:38 +02:00
VAGRANT.md update instructions for Vagrant 2024-11-19 09:26:59 +01:00
Vagrantfile Development environment: add missing dependencies 2024-08-09 17:57:18 +02:00

Build Status

Nominatim

Nominatim (from the Latin, 'by name') is a tool to search OpenStreetMap data by name and address (geocoding) and to generate synthetic addresses of OSM points (reverse geocoding). An instance with up-to-date data can be found at https://nominatim.openstreetmap.org. Nominatim is also used as one of the sources for the Search box on the OpenStreetMap home page.

Documentation

The documentation of the latest development version is in the docs/ subdirectory. A HTML version can be found at https://nominatim.org/release-docs/develop/ .

Installation

The latest stable release can be downloaded from https://nominatim.org. There you can also find installation instructions for the release, as well as an extensive Troubleshooting/FAQ section.

Detailed installation instructions for current master can be found at nominatim.org as well.

A quick summary of the necessary steps:

  1. Create a Python virtualenv and install the packages:

     python3 -m venv nominatim-venv
     ./nominatim-venv/bin/pip install packaging/nominatim-{api,db}
    
  2. Create a project directory, get OSM data and import:

     mkdir nominatim-project
     cd nominatim-project
     ../nominatim-venv/bin/nominatim import --osm-file <your planet file>
    
  3. Start the webserver:

     ./nominatim-venv/bin/pip install uvicorn falcon
     ../nominatim-venv/bin/nominatim serve
    

License

The Python source code is available under a GPL license version 3 or later. The Lua configuration files for osm2pgsql are released under the Apache License, Version 2.0. All other files are under a GPLv2 license.

Contributing

Contributions, bug reports and pull requests are welcome. When reporting a bug, please use one of the issue templates and make sure to provide all the information requested. If you are not sure if you have really found a bug, please ask for help in the forums first (see 'Questions' below).

For details on contributing, have a look at the contribution guide.

Questions and help

If you have questions about search results and the OpenStreetMap data used in the search, use the OSM Forum.

For questions, community help and discussions around the software and your own installation of Nominatim, use the Github discussions forum.