Skip to content

Instantly share code, notes, and snippets.

@invisiblefunnel
Last active January 2, 2020 05:18
Show Gist options
  • Save invisiblefunnel/65cd2019be5768dd98e8f1d85c904888 to your computer and use it in GitHub Desktop.
Save invisiblefunnel/65cd2019be5768dd98e8f1d85c904888 to your computer and use it in GitHub Desktop.

Filter ways

osmosis \
  --read-pbf-fast ~/Desktop/planet-190909.osm.pbf \
  --log-progress \
  --buffer \
  --tag-filter accept-ways highway=* \
  --tag-filter reject-ways highway=cycleway,motor,proposed,construction,abandoned,platform,raceway \
  --tag-filter reject-ways area=yes \
  --tag-filter reject-ways foot=no \
  --tag-filter reject-ways service=private \
  --tag-filter reject-ways access=private \
  --tag-filter reject-relations \
  --used-node \
  --write-pbf ~/Desktop/walk-190909.osm.pbf omitmetadata=true
osmosis \
  --read-pbf-fast ~/Desktop/planet-190909.osm.pbf \
  --tag-filter accept-ways highway=* \
  --tag-filter reject-relations \
  --used-node \
  --write-pbf ~/Desktop/highways-190909.osm.pbf omitmetadata=true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment