osrm-backend/third_party/libosmium
2024-09-28 20:35:05 +02:00
..
.github Bump osmium to version 2.20.0 (#6997) 2024-09-28 20:35:05 +02:00
benchmarks Bump osmium to version 2.20.0 (#6997) 2024-09-28 20:35:05 +02:00
cmake Update libosmium to 2.18.0. Fix problem with Docker image build. (#6303) 2022-08-16 18:26:21 +01:00
doc Upgrade libosmium to v2.15.6 2020-11-17 14:59:06 -07:00
examples Bump osmium to version 2.20.0 (#6997) 2024-09-28 20:35:05 +02:00
include Bump osmium to version 2.20.0 (#6997) 2024-09-28 20:35:05 +02:00
test Bump osmium to version 2.20.0 (#6997) 2024-09-28 20:35:05 +02:00
.clang-tidy Bump osmium to version 2.20.0 (#6997) 2024-09-28 20:35:05 +02:00
.codecov.yml Merge commit '6eb4f090f98f6b17a23c57768c16b7716b6c9cbd' as 'third_party/libosmium' 2017-08-30 09:30:27 +00:00
.gitignore Merge commit '6eb4f090f98f6b17a23c57768c16b7716b6c9cbd' as 'third_party/libosmium' 2017-08-30 09:30:27 +00:00
.gitmodules Merge commit 'a3a7a822e136d2357660d85124d8e7bb26ea6f7c' into subtrees-protozero-vtzero 2018-04-19 22:03:25 +03:00
appveyor.yml Update libosmium to 2.18.0. Fix problem with Docker image build. (#6303) 2022-08-16 18:26:21 +01:00
build-appveyor.bat Bump osmium to version 2.20.0 (#6997) 2024-09-28 20:35:05 +02:00
build-local.bat Merge commit 'a3a7a822e136d2357660d85124d8e7bb26ea6f7c' into subtrees-protozero-vtzero 2018-04-19 22:03:25 +03:00
build-msys2.bat Bump osmium to version 2.20.0 (#6997) 2024-09-28 20:35:05 +02:00
CHANGELOG.md Bump osmium to version 2.20.0 (#6997) 2024-09-28 20:35:05 +02:00
CMakeLists.txt Bump osmium to version 2.20.0 (#6997) 2024-09-28 20:35:05 +02:00
CONTRIBUTING.md Merge commit 'a3a7a822e136d2357660d85124d8e7bb26ea6f7c' into subtrees-protozero-vtzero 2018-04-19 22:03:25 +03:00
LICENSE Merge commit 'a3a7a822e136d2357660d85124d8e7bb26ea6f7c' into subtrees-protozero-vtzero 2018-04-19 22:03:25 +03:00
NOTES_FOR_DEVELOPERS.md Bump osmium to version 2.20.0 (#6997) 2024-09-28 20:35:05 +02:00
osmium.imp Merge commit 'a3a7a822e136d2357660d85124d8e7bb26ea6f7c' into subtrees-protozero-vtzero 2018-04-19 22:03:25 +03:00
README.md Bump osmium to version 2.20.0 (#6997) 2024-09-28 20:35:05 +02:00

Libosmium

https://osmcode.org/libosmium

A fast and flexible C++ library for working with OpenStreetMap data.

Libosmium works on Linux, macOS and Windows.

Github Build Status Packaging status

Please see the Libosmium manual for more details than this README can provide.

Prerequisites

You need a C++11 compiler and standard C++ library. Osmium needs at least GCC 4.8 or clang (LLVM) 3.4. (Some parts may work with older versions.)

Different parts of Libosmium (and the applications built on top of it) need different libraries. You DO NOT NEED to install all of them, just install those you need for your programs.

For details see the list of dependencies in the manual.

The following external (header-only) libraries are included in the libosmium repository:

Note that protozero was included in earlier versions of libosmium, but isn't any more.

Directories

  • benchmarks: Some benchmarks checking different parts of Libosmium.

  • cmake: CMake configuration scripts.

  • doc: Config for API reference documentation.

  • examples: Osmium example applications.

  • include: C/C++ include files. All of Libosmium is in those header files which are needed for building Osmium applications.

  • test: Tests (see below).

Building

Osmium is a header-only library, so there is nothing to build for the library itself.

But there are some tests and examples that can be build. Libosmium uses cmake:

mkdir build
cd build
cmake ..
make

This will build the examples and tests. Call ctest to run the tests.

For more details see the Building Libosmium chapter in the manual.

Testing

To download the osm-testdata submodule call:

git submodule update --init

This will enable additional tests.

See the Libosmium Manual for instructions.

License

Libosmium is available under the Boost Software License. See LICENSE.

Authors

Libosmium was mainly written and is maintained by Jochen Topf (jochen@topf.org). See the git commit log for other authors.