Last active
June 4, 2017 10:59
-
-
Save JamesKingdom/8f387591e2b6e2905554867ed2140b9b to your computer and use it in GitHub Desktop.
touch files
This file contains 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
echo "enter url" | |
read url | |
wget --output-document=temp.osm.pbf $url | |
osm2pgsql --slim -C 7500 --number-processes 8 temp.osm.pbf | |
touch /var/lib/mod_tile/planet-import-complete | |
rm temp.osm.pbf | |
/etc/init.d/renderd restart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment