osrm-backend/third_party/libosmium
2020-11-17 14:59:06 -07:00
..
benchmarks Upgrade libosmium to v2.15.6 2020-11-17 14:59:06 -07:00
cmake Upgrade libosmium to v2.15.6 2020-11-17 14:59:06 -07:00
doc Upgrade libosmium to v2.15.6 2020-11-17 14:59:06 -07:00
examples Upgrade libosmium to v2.15.6 2020-11-17 14:59:06 -07:00
include Upgrade libosmium to v2.15.6 2020-11-17 14:59:06 -07:00
test Upgrade libosmium to v2.15.6 2020-11-17 14:59:06 -07:00
.clang-tidy Upgrade libosmium to v2.15.6 2020-11-17 14:59:06 -07: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
.travis.yml Upgrade libosmium to v2.15.6 2020-11-17 14:59:06 -07:00
.ycm_extra_conf.py Upgrade libosmium to v2.15.6 2020-11-17 14:59:06 -07:00
appveyor.yml Upgrade libosmium to v2.15.6 2020-11-17 14:59:06 -07:00
build-appveyor.bat Upgrade libosmium to v2.15.6 2020-11-17 14:59:06 -07:00
build-local.bat Merge commit 'a3a7a822e136d2357660d85124d8e7bb26ea6f7c' into subtrees-protozero-vtzero 2018-04-19 22:03:25 +03:00
build-msys2.bat Upgrade libosmium to v2.15.6 2020-11-17 14:59:06 -07:00
CHANGELOG.md Upgrade libosmium to v2.15.6 2020-11-17 14:59:06 -07:00
CMakeLists.txt Upgrade libosmium to v2.15.6 2020-11-17 14:59:06 -07: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 Merge commit 'a3a7a822e136d2357660d85124d8e7bb26ea6f7c' into subtrees-protozero-vtzero 2018-04-19 22:03:25 +03:00
osmium.imp Merge commit 'a3a7a822e136d2357660d85124d8e7bb26ea6f7c' into subtrees-protozero-vtzero 2018-04-19 22:03:25 +03:00
README.md Upgrade libosmium to v2.15.6 2020-11-17 14:59:06 -07:00

Libosmium

https://osmcode.org/libosmium

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

Libosmium works on Linux, Mac OSX and Windows.

Travis Build Status Appveyor Build status Coverage Status Packaging status

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

Prerequisites

Because Libosmium uses many C++11 features you need a modern 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.

Switching from the old Osmium

If you have been using the old version of Osmium at https://github.com/joto/osmium you might want to read about the changes needed.

License

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

Authors

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