An open API service indexing awesome lists of open source software.

https://github.com/tobilg/osmctools-docker

Slim Docker image for using osmctools
https://github.com/tobilg/osmctools-docker

Last synced: 10 months ago
JSON representation

Slim Docker image for using osmctools

Awesome Lists containing this project

README

          

# osmctools-docker
Slim Docker image for using osmctools, based on Debian Stitch.

## Usage

You can have a look at the [Osmctools documentation](https://wiki.openstreetmap.org/wiki/Osmconvert) on how to use Osmconvert itself.

For example, you can use the Docker image like this to unify two PBF files to a single PBF file:

```bash
$ docker run -v $(pwd)/data:/data tobilg/osmctools /bin/sh -c "osmconvert /data/region1.pbf --out-o5m | osmconvert - /data/region2.pbf -o=/data/all.pbf"
```