osm-extract extracts features from OpenStreetMap PBF files as GeoJSON.
- Reads
.osm.pbf
files from local disk, no need to run an Overpass API server. - Preserves OpenStreetMap tags as GeoJSON properties.
- Extremely fast, thanks to
github.com/paulmach/osm
. - Optionally polygonizes ways and relations, thanks to GEOS.
- Optionally unions all features into a single feature.
$ go install github.com/twpayne/osm-extract@latest
Extract the administrative boundaries of the Isle of Man as a polygon:
$ osm-extract -i testdata/isle-of-man-latest.osm.pbf -type=relation -tags=ISO3166-1=IM,admin_level=2 -polygonize
$ osm-extract -i testdata/isle-of-man-latest.osm.pbf -type=relation -tags=admin_level=6 -polygonize -union
MIT