Check out the latest version of Routino: svn co http://routino.org/svn/trunk routino
Contents of /trunk/web/data/create.sh
Parent Directory
|
Revision Log
Revision 569 -
(show annotations)
(download)
(as text)
Wed Dec 29 09:50:50 2010 UTC (14 years, 2 months ago) by amb
File MIME type: text/x-sh
File size: 667 byte(s)
Wed Dec 29 09:50:50 2010 UTC (14 years, 2 months ago) by amb
File MIME type: text/x-sh
File size: 667 byte(s)
Added the uncontrolled (not auto-generated) files from routino-1.1.
1 | #!/bin/sh -x |
2 | |
3 | # This script can download either from GeoFabrik or Cloudmade. |
4 | |
5 | # |
6 | ## EDIT THIS to set the names of the files to download. |
7 | #files="europe/great_britain.osm.bz2 europe/ireland.osm.bz2 europe/isle_of_man.osm.bz2" |
8 | # |
9 | ## Download the files |
10 | # |
11 | #for file in $files; do |
12 | # wget http://download.geofabrik.de/osm/$file |
13 | #done |
14 | |
15 | |
16 | # EDIT THIS to set the names of the files to download. |
17 | files="europe/united_kingdom/united_kingdom.osm.bz2 europe/ireland/ireland.osm.bz2 europe/isle_of_man/isle_of_man.osm.bz2" |
18 | |
19 | # Download the files |
20 | |
21 | for file in $files; do |
22 | wget http://downloads.cloudmade.com/$file |
23 | done |
24 | |
25 | |
26 | # Process the data |
27 | |
28 | bunzip2 -c *.bz2 | ../bin/planetsplitter |
Properties
Name | Value |
---|---|
svn:executable | * |