Routino SVN Repository Browser

Check out the latest version of Routino: svn co http://routino.org/svn/trunk routino

ViewVC logotype

Contents of /trunk/web/data/create.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1513 - (show annotations) (download) (as text)
Sat Feb 22 13:38:02 2014 UTC (11 years ago) by amb
File MIME type: text/x-sh
File size: 415 byte(s)
Downloads from GeoFabrik only and URLs changed.

1 #!/bin/sh -x
2
3 # This script can download from the GeoFabrik server.
4
5
6 # EDIT THIS to set the names of the files to download from GeoFabrik.
7 files="europe/great-britain-latest.osm.bz2 europe/ireland-and-northern-ireland-latest.osm.bz2"
8 server="download.geofabrik.de"
9
10
11 # Download the files
12
13 for file in $files; do
14 wget -N http://$server/$file
15 done
16
17
18 # Process the data
19
20 ../bin/planetsplitter --errorlog *.osm.bz2

Properties

Name Value
svn:executable *