[OSM-talk] gosmore on MacOSX
Robert T Wyatt
robert.wyatt at mail.utexas.edu
Wed Jun 20 20:47:21 BST 2007
Robert T Wyatt wrote:
> I wanted to offer a simple script for MacOSX that looks for a new
> gosmore.cc, Makefile, and planet file then it makes and rebuilds
> gosmore, but I can't find a dedicated page on the wiki where this would
> be pertinent. I'd like to ask if there is already a place to put this.
>
> fyi, Here's the script:
>
> #!/bin/bash
> cd ~/JOSM
> rm gosmore.cc Makefile
> wget www.rational.co.za/gosmore.cc
> wget www.rational.co.za/Makefile
> wget planet.openstreetmap.org/planet-070620.osm.bz2
> make
> bzcat planet-070620.osm.bz2 | ./gosmore rebuild
> cd ~/
Here's an improvement using variables for the date (assumes that the
script is run on the day that the new planet file is created).
#!/bin/bash
cd ~/JOSM
rm gosmore.cc Makefile
wget www.rational.co.za/gosmore.cc
wget www.rational.co.za/Makefile
wget planet.openstreetmap.org/planet-$(date +%y%m%d).osm.bz2
make
bzcat planet-$(date +%y%m%d).osm.bz2 | ./gosmore rebuild
cd ~/
More information about the talk
mailing list