Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/osmcode/osmium-contrib
Mixed more or less useful programs using the Osmium library
https://github.com/osmcode/osmium-contrib
openstreetmap
Last synced: 2 months ago
JSON representation
Mixed more or less useful programs using the Osmium library
- Host: GitHub
- URL: https://github.com/osmcode/osmium-contrib
- Owner: osmcode
- Created: 2013-08-29T18:35:36.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2024-10-31T22:27:45.000Z (2 months ago)
- Last Synced: 2024-10-31T23:20:11.511Z (2 months ago)
- Topics: openstreetmap
- Language: C++
- Homepage: https://osmcode.org/osmium-contrib
- Size: 188 KB
- Stars: 21
- Watchers: 9
- Forks: 12
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Osmium Contrib
This repository contains a mixed bunch of more or less useful examples of how
to work with the Osmium library.You have to set up [Libosmium](https://osmcode.org/libosmium) first.
[![Build Status](https://github.com/osmcode/osmium-contrib/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/osmcode/osmium-contrib/actions)
## Building
This will work easiest if you have Libosmium installed in your normal include
path or if the Libosmium git repository is checked out in the same directory as
the "osmium-contrib" repository.Osmium-contrib uses CMake for its builds. For Unix/Linux systems a simple
Makefile wrapper is provided to make the build even easier.### Building all projects
In the main directory type `make`. Results will be in the `build` subdirectory.
Or you can go the long route explicitly calling CMake as follows:
mkdir build
cd build
cmake ..
make### Building a single project
You can build each project by itself by changing into its directory and calling
`make` or `cmake` as described above.## License
All contributions are released into the Public Domain.
## Author
Jochen Topf (https://jochentopf.com/) and others.