-
Notifications
You must be signed in to change notification settings - Fork 3
/
osm-build_bulk.sh
executable file
·40 lines (33 loc) · 1.53 KB
/
osm-build_bulk.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/bin/sh
###############################################################################
# #
# bulk build maps for different countries #
# #
# @version: 1.0.0 #
# @author: Steiner Patrick <patrick@helmsdeep.at> #
# @date: 14.03.2014 09:05 #
# License: GPL #
# http://www.fsf.org/licenses/gpl.htmlfree for all #
# #
###############################################################################
# current date
CDATE=`date "+%G%m%d"`
# strings for the config files
PRETTYDATE=`date "+%d.%m.%G"`
CWD=`pwd`
###############################################################################
# MAIN #
###############################################################################
# read the countries from a seperate file
if [ -r conf/countries.conf ]; then
countries="conf/countries.conf"
else
echo "ERROR: No countries file found."
exit -1
fi
while read line
do
echo "Starting build for country: $line"
./osm-build_map.sh -d -c $line -t outdoor
done <"$countries"
# vim:ts=4:sw=4: