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
- Host: GitHub
- URL: https://github.com/tobilg/osmctools-docker
- Owner: tobilg
- License: mit
- Archived: true
- Created: 2017-11-22T13:57:21.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-23T08:43:11.000Z (over 8 years ago)
- Last Synced: 2025-03-26T03:41:32.668Z (over 1 year ago)
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"
```