pelias / pbf2json

An OpenStreetMap pbf parser which exports json, allows you to cherry-pick tags and handles denormalizing ways and relations. Available as a standalone binary and comes with a convenient npm wrapper.
https://pelias.io
MIT License
143 stars 36 forks source link

change args order to fix leveldb path error #1

Closed missinglink closed 9 years ago

missinglink commented 9 years ago

Fix for leveldb path not being correctly passed to the Go script.

Changes argv ordering from:

[ '-tags=amenity', '/media/hdd/somes.osm.pbf', '-leveldb=/tmp' ]

to...

[ '-tags=amenity', '-leveldb=/tmp', '/media/hdd/somes.osm.pbf' ]