Last active
April 12, 2026 00:46
-
-
Save chapmanjacobd/c74f3d53186aa5b437252451f50de6be to your computer and use it in GitHub Desktop.
OSM planet.pbf to Wikipedia POIs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| osmium tags-filter planet-260330.osm.pbf /wikipedia -o wikipedia_pois.osm.pbf | |
| # (one hour) | |
| osmium export wikipedia_pois.osm.pbf -f jsonseq --format-option=print_record_separator=false | \ | |
| jq -sc 'group_by(.properties.wikipedia) | map(max_by(.properties | length)) | sort_by(.properties | length) | reverse[]' \ | |
| > grouped_by_wikipedia.geojsonl | |
| # (six hours) | |
| # .rw-r--r--@ 9.7G xk 9 Apr 16:09 grouped_by_wikipedia.geojsonl | |
| rm -f wikipedia_pois.osm.pbf | |
| go install github.com/chapmanjacobd/computer/bin/centroidify@latest | |
| centroidify grouped_by_wikipedia.geojsonl wikipedia.POIs.geojson |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment