Open Source Routing Machine - C++ backend
Go to file
Patrick Niklaus b91c2f0299 Squashed 'third_party/libosmium/' changes from c1f34c455..9fd2348c6
9fd2348c6 Release v2.11.3
ed708286e Fix namespace.
835df8a7f Fix multipolygon assembler.
0979ab529 Fix areas assembler algorithm.
801f84c62 Bugfix: Invalid use of iterators.
f85653820 Read OPL file correctly even if trailing newline in file missing.
a31571c0f Release v2.11.2
a3903b368 Use minimum size of 64 bytes for buffers.
b86bafefe Release v2.11.1
32ebf736c Updated change log.
632ea5198 Bugfix: Call get_creator_function() in main thread.
ddc79eee7 Add test for not correctly handled unsupported_file_format_error.
86197a14f Bugfix: Terminate called on full buffer.
4340be8ad Fix the Filter::count() method.

git-subtree-dir: third_party/libosmium
git-subtree-split: 9fd2348c6956b6e1b930b50850e99eb31207ed50
2017-07-18 21:08:32 +00:00
benchmarks Squashed 'third_party/libosmium/' changes from 80df1d6..40c4a48 2016-11-11 15:50:02 +01:00
cmake Squashed 'third_party/libosmium/' changes from 80df1d6..40c4a48 2016-11-11 15:50:02 +01:00
doc Squashed 'third_party/libosmium/' changes from d5ecf4d..c1f34c4 2017-01-20 14:05:21 +01:00
examples Squashed 'third_party/libosmium/' changes from d5ecf4d..c1f34c4 2017-01-20 14:05:21 +01:00
include Squashed 'third_party/libosmium/' changes from c1f34c455..9fd2348c6 2017-07-18 21:08:32 +00:00
test Squashed 'third_party/libosmium/' changes from c1f34c455..9fd2348c6 2017-07-18 21:08:32 +00:00
.gitignore Squashed 'third_party/libosmium/' changes from 2282c84..80df1d6 2016-10-03 13:08:59 -04:00
.travis.yml Squashed 'third_party/libosmium/' changes from d5ecf4d..c1f34c4 2017-01-20 14:05:21 +01:00
.ycm_extra_conf.py Squashed 'third_party/libosmium/' changes from 2282c84..80df1d6 2016-10-03 13:08:59 -04:00
appveyor.yml Squashed 'third_party/libosmium/' changes from 2282c84..80df1d6 2016-10-03 13:08:59 -04:00
build-appveyor.bat Squashed 'third_party/libosmium/' changes from 2282c84..80df1d6 2016-10-03 13:08:59 -04:00
build-local.bat Squashed 'third_party/libosmium/' changes from 2282c84..80df1d6 2016-10-03 13:08:59 -04:00
CHANGELOG.md Squashed 'third_party/libosmium/' changes from c1f34c455..9fd2348c6 2017-07-18 21:08:32 +00:00
CMakeLists.txt Squashed 'third_party/libosmium/' changes from c1f34c455..9fd2348c6 2017-07-18 21:08:32 +00:00
CONTRIBUTING.md Squashed 'third_party/libosmium/' changes from d5ecf4d..c1f34c4 2017-01-20 14:05:21 +01:00
EXTERNAL_LICENSES.txt Squashed 'third_party/libosmium/' content from commit 2282c84 2016-03-01 17:56:55 +01:00
LICENSE.txt Squashed 'third_party/libosmium/' content from commit 2282c84 2016-03-01 17:56:55 +01:00
NOTES_FOR_DEVELOPERS.md Squashed 'third_party/libosmium/' changes from d5ecf4d..c1f34c4 2017-01-20 14:05:21 +01:00
osmium.imp Squashed 'third_party/libosmium/' changes from 2282c84..80df1d6 2016-10-03 13:08:59 -04:00
README.md Squashed 'third_party/libosmium/' changes from d5ecf4d..c1f34c4 2017-01-20 14:05:21 +01:00

Libosmium

http://osmcode.org/libosmium

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

Libosmium works on Linux, Mac OSX and Windows.

Build Status Build 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:

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 detals see the Building Libosmium chapter in the manual.

Testing

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.