forked from osm2pgsql-dev/osm2pgsql
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mapnik-osm-updater.sh
executable file
·784 lines (675 loc) · 25.7 KB
/
mapnik-osm-updater.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
#!/bin/bash
export osm_username="osm"
export database_name="gis"
export planet_dir="/home/$osm_username/osm/planet"
export planet_file="$planet_dir/planet.osm.bz2"
export sql_dump="$planet_dir/planet.osm.sql.bz2"
export log_dir=/var/log
export geoinfodb_file="/usr/share/icons/map-icons/geoinfo.db"
export osmdb_file="/usr/share/gpsdrive/osm.db"
export osm2pgsql_cmd=`which osm2pgsql`
test -x "$osm2pgsql_cmd" || echo "Missing osm2pgsql in PATH"
test -x "$osm2pgsql_cmd" || osm2pgsql_cmd="$HOME/svn.openstreetmap.org/applications/utils/export/osm2pgsql/osm2pgsql"
test -x "$osm2pgsql_cmd" || echo "Missing osm2pgsql"
export cmd_osm2poidb=`which osm2poidb`
test -x "$cmd_osm2poidb" || echo "Missing osm2poidb in PATH"
test -x "$cmd_osm2poidb" || cmd_osm2poidb="`dirname $0`/../osm2poidb/build/osm2poidb"
test -x "$cmd_osm2poidb" || cmd_osm2poidb="$HOME/svn.openstreetmap.org/applications/utils/export/osm2poidb/build/osm2poidb"
test -x "$cmd_osm2poidb" || echo "Missing osm2poidb"
osm_planet_mirror_cmd=`which osm-planet-mirror`
test -x "$osm_planet_mirror_cmd" || echo "Missing planet-mirror.pl in PATH"
test -x "$osm_planet_mirror_cmd" || osm_planet_mirror_cmd="`dirname $0`/../../planet-mirror/planet-mirror.pl"
test -x "$osm_planet_mirror_cmd" || osm_planet_mirror_cmd="$HOME/svn.openstreetmap.org/applications/utils/planet-mirror/planet-mirror.pl"
test -x "$osm_planet_mirror_cmd" || osm_planet_mirror_cmd="`dirname ../../planet-mirror/planet-mirror.pl`"
test -x "$osm_planet_mirror_cmd" || echo "Missing planet-mirror.pl"
test -n "$1" || help=1
quiet=" -q "
verbose=1
for arg in "$@" ; do
case $arg in
--all-planet) # Do all the creation steps listed below from planet file
create_osm_user=1
mirror=1
check_newer_planet=
drop=1
create_db=1
db_table_create=1
create_db=1
create_db_user=1
db_add_900913=1
db_add_spatial_ref_sys=1
grant_all_rights_to_user_osm=1
planet_fill=1
db_add_gpsdrive_poitypes=1
create_db_users=${create_db_users:-*}
grant_db_users=${grant_db_users:-*}
;;
--all-planet-geofabrik=\?) # Use Planet Extract from Frederics GeoFabrik.de Page as planet File and import
# Use ? for a list of possible files
dir_country=${arg#*=}
country=`basename $dir_country`
planet_file="$planet_dir/${country}.osm.bz2"
mirror_geofabrik=${dir_country}
mirror=
;;
--all-planet-geofabrik=*) # Use Planet Extract from Frederics GeoFabrik.de Page as planet File and import
# Use ? for a list of possible files
# Example: europe/germany/baden-wuerttemberg
dir_country=${arg#*=}
country=`basename $dir_country`
planet_file="$planet_dir/${country}.osm.bz2"
mirror_geofabrik=${dir_country}
create_osm_user=1
mirror=
check_newer_planet=
drop=1
create_db=1
db_table_create=1
db_add_900913=1
db_add_spatial_ref_sys=1
create_db_user=1
grant_all_rights_to_user_osm=1
planet_fill=1
db_add_gpsdrive_poitypes=1
create_db_users=${create_db_users:-*}
grant_db_users=${grant_db_users:-*}
;;
--all-planet-update) # Do all the creation steps listed below from planet file with up to date checking
create_osm_user=1
mirror=1
check_newer_planet=1
drop=1
create_db=1
db_add_900913=1
db_add_spatial_ref_sys=1
create_db_user=1
grant_all_rights_to_user_osm=1
planet_fill=1
db_add_gpsdrive_poitypes=1
create_db_users=${create_db_users:-*}
grant_db_users=${grant_db_users:-*}
;;
--all-from-dump) # Do all the creation steps listed below
# from planet-dump file
# !!! all-from-dump is not completely tested yet
create_osm_user=1
mirror_dump=1
drop=1
create_db=1
db_add_900913=1
db_add_spatial_ref_sys=1
create_db_user=1
grant_all_rights_to_user_osm=1
create_db_users=${create_db_users:-*}
fill_from_dump="$sql_dump"
grant_db_users=${grant_db_users:-*}
db_add_gpsdrive_poitypes=1
;;
--all-create) # Do all the creation steps listed below only no data
# import and no planet mirroring
create_osm_user=1
drop=1
create_db=1
db_add_900913=1
db_add_spatial_ref_sys=1
create_db_user=1
grant_all_rights_to_user_osm=1
create_db_users=${create_db_users:-*}
grant_db_users=${grant_db_users:-*}
;;
--create-osm-user) # create the osm-user needed
# This means creating a user 'osm' and his home directory
# with useradd, mkdir, chmod and chown
create_osm_user=1
;;
--mirror) # mirror planet File (http://planet.openstreetmap.org/)
mirror=1
;;
--no-mirror) # do not mirror planet File
mirror=
;;
--check-newer-planet) # Check if Planet File is newer then stampfile.
# If yes: Continue
check_newer_planet=1
;;
--drop) # drop the old Database (gis) and Database-user (osm)
drop=1
;;
--create-db) # create the database (gis)
# with this command only the database is created,
# but no tables inside it
create_db=1
;;
--create-db-user) # create the database-user (osm)
create_db_user=1
;;
--grant-all2osm-user) # grant all rights for the database to the DB-User osm
grant_all_rights_to_user_osm=1
;;
--create-db-users=*) #Create a Database user for all users specified.
# To create a db-user for all available system-user
# specify *. (Except root))
create_db_users=${arg#*=}
;;
--grant-db-users=*) # Grant database-users all rights (including write, ...)
# to the gis Database !!! This has to be changed in the
# future, normally only the osm user needs update rights
grant_db_users=${arg#*=}
;;
--add-gpsdrive-types) # add GpsDrive POI-Types to points table
db_add_gpsdrive_poitypes=1
;;
--planet-fill) # fill database from planet File
planet_fill=1
;;
--mirror-dump) # mirror the planet.sql dump File
mirror_dump=1
;;
--no-mirror-dump) # Do not mirror the planet.sql dump File
mirror_dump=
;;
--fill-from-dump=*) # fill database from Dump File
fill_from_dump=${arg#*=}
;;
--mapnik-dump=*) # Dump Content of Mapnik Database to a File (.sql|.sql.bz))
postgis_mapnik_dump=${arg#*=}
;;
--db-table-create) # Create tables in Database with osm2pgsql
db_table_create=1
;;
--db-add-srid-900913) # Add SRID 900913
db_add_900913=1
;;
--db-add-spatial_ref_sys) # Add SRIDs to spatial_ref_sys
db_add_spatial_ref_sys=1
;;
--count-db) # Count entries in Database. This is to check
# if the database really contains entries
# if you set an empty user with the option osm_username=''
# the current user is used
count_db=1
;;
-h)
help=1
;;
--help)
help=1
;;
-help)
help=1
;;
--debug) # switch on debugging
debug=1
verbose=1
quiet=""
;;
-debug)
debug=1
verbose=1
quiet=""
;;
--nv) # be a little bit less verbose
verbose=''
;;
--planet-dir=*) # define Directory for Planet-File
planet_dir=${arg#*=}
planet_file="$planet_dir/planet.osm.bz2"
;;
--planet-file=*) # define Planet-File including Directory
planet_file=${arg#*=}
;;
--poi-file=*) # define POI Database file including Directory
osmdb_file=${arg#*=}
;;
--geoinfo-file=*) # define geoinfo database file containing poi-types
geoinfodb_file=${arg#*=}
;;
--osm-username=*) # Define username to use for DB creation and planet
# download
# !! You shouldn't use your username or root as the
# !! download and install user.
# This username is the download and install user.
# The osm-user normally only should have the planet files
# in hishome directory and nothing else. By default
# the osm-username is 'osm'
osm_username=${arg#*=}
if [ "$osm_username" = "$USER" ] ; then
echo
echo "!!!!!! ERROR: Don't use your own login account as the osm_username!!" 1>&2
echo
exit 1
fi
if [ "$osm_username" = "root" ] ; then
echo
echo "!!!!!! ERROR: Don't use the root account as the osm_username!!" 1>&2
echo
exit 1
fi
planet_dir="/home/$osm_username/osm/planet"
planet_file="$planet_dir/planet.osm.bz2"
;;
--osm2pgsql-cmd=*) # The path to the osm2pgsql command
# It can be found at
# svn.openstreetmap.org/applications/utils/export/osm2pgsql/
# and has to be compiled. Alternatively you can install
# the Debian Package openstreetmap-utils
osm2pgsql_cmd=${arg#*=}
if ! [ -x "$osm2pgsql_cmd" ]; then
echo "!!!!!! ERROR: Cannot execute '$osm2pgsql_cmd'" 1>&2
exit -1
fi
;;
--database-name=*) # use this name for the database default is 'gis'
database_name=${arg#*=}
;;
*)
echo ""
echo "!!!!!!!!! Unknown option $arg"
echo ""
help=1
;;
esac
done
if [ -n "$help" ] ; then
# extract options from case commands above
options=`grep -E -e esac -e '\s*--.*\).*#' $0 | sed '/esac/,$d;s/.*--/ [--/; s/=\*)/=val]/; s/)[\s ]/]/; s/#.*\s*//; s/[\n/]//g;'`
options=`for a in $options; do echo -n " $a" ; done`
echo "$0 $options"
echo "
!!! Warning: This Script is for now a quick hack to make setting up
!!! Warning: My databases easier. Please check if it really works for you!!
!!! Warning: Especially when using different Database names or username, ...
!!! Warning: not every combination of values except the default is tested.
This script tries to install the mapnik database.
For this it first creates a new user osm on the system
and mirrors the current planet to his home directory.
Then this planet is imported into the postgis Database from a
newly created user named osm
This script uses sudo. So you either have to have sudo right or you'll
have to start the script as root. The users needed will be postgres and osm
"
# extract options + description from case commands above
grep -E -e esac -e '--.*\).*#' -e '^[\t\s ]+#' $0 | \
grep -v /bin/bash | sed '/esac/,$d;s/.*--/ --/;s/=\*)/=val/;s/)//;s/#//;s/\\//;'
exit;
fi
if [ -n "$osm_username" ] ; then
sudo_cmd="sudo -u $osm_username"
else
sudo_cmd=''
fi
export import_stamp_file=${log_dir}/osm2pgsql_postgis-$database_name.stamp
export import_log=${log_dir}/osm2pgsql_postgis-$database_name.log
if [ -n "$debug" ] ; then
echo "Planet File: `ls -l $planet_file`"
echo "Import Stamp : `ls -l $import_stamp_file`"
fi
############################################
# Create a user on the system
############################################
if [ -n "$create_osm_user" ] ; then
test -n "$verbose" && echo "----- Check if we already have an user '$osm_username'"
if ! id "$osm_username" >/dev/null; then
echo "create '$osm_username' User"
useradd "$osm_username"
fi
mkdir -p "/home/$osm_username/osm/planet"
# The user itself should be allowed to read/write all his own files
# in the ~/osm/ Directory
chown "$osm_username" "/home/$osm_username"
chown -R "$osm_username" "/home/$osm_username/osm"
chmod +rwX "/home/$osm_username"
chmod -R +rwX "/home/$osm_username/osm"
# Everyone on the system is allowed to read the planet.osm Files
chmod -R a+rX "/home/$osm_username/osm"
fi
############################################
# Mirror the planet-dump File for Europe
############################################
if [ -n "$mirror_geofabrik" ] ; then
geofabrik_basedir="http://download.geofabrik.de/osm"
if [ "$mirror_geofabrik" = "?" ]; then
echo "Retreiving available planet extracts from GeoFabrik ..."
# Find all Subdirs in the first 3 levels
wget_out=`wget --no-convert-links -q --level=0 -O - "http://download.geofabrik.de/osm" | grep DIR | grep -v -i Parent `
sub_dirs=`echo "$wget_out" | perl -ne 'm,href="(.*)/",;print "$1 "'`
for level in 1 2 3; do
for sub_dir in $sub_dirs ; do
#echo "Get dirs in Subdir: $sub_dir"
wget_out=`wget -q --level=0 -O - "$geofabrik_basedir/$sub_dir" | grep 'DIR' | grep -v Parent `
new_dirs="$new_dirs `echo "$wget_out" | perl -ne 'm,href="(.*)/", && print "'$sub_dir'/$1 "'`"
# echo "WGET: '$wget_out'"
done
sub_dirs="$sub_dirs $new_dirs"
done
sub_dirs=`for dir in $sub_dirs; do echo $dir; done | sort -u`
# Printout content of all $sub_dirs
echo "Possible Values are:"
for sub_dir in "" $sub_dirs ; do
wget -q --level=0 -O - "$geofabrik_basedir/$sub_dir" | grep 'OpenStreetMap data' | \
perl -ne 'm/.*href="([^"]+)\.osm.bz2"/;print " '$sub_dir/'$1\n"'
done
exit 1
fi
planet_source_file="${geofabrik_basedir}/${mirror_geofabrik}.osm.bz2"
if [ -n "$mirror" ] ; then
test -n "$verbose" && echo "----- Mirroring planet File $planet_source_file"
wget -v --mirror "$planet_source_file" \
--no-directories --directory-prefix=$planet_dir/
fi
fi
############################################
# Mirror the newest planet File from planet.openstreetmap.org
############################################
if [ -n "$mirror" ] ; then
test -n "$verbose" && echo "----- Mirroring planet File"
if ! [ -x "$osm_planet_mirror_cmd" ]; then
echo "!!!!!! ERROR: Cannot execute '$osm_planet_mirror_cmd'" 1>&2
exit -1
fi
if ! $sudo_cmd $osm_planet_mirror_cmd -v -v --planet-dir=$planet_dir ; then
echo "!!!!!! ERROR: Cannot Mirror Planet File" 1>&2
exit 1
fi
if ! [ -s $planet_file ] ; then
echo "!!!!!! ERROR: File $planet_file is missing"
exit -1
fi
fi
############################################
# Check if Planet File is newer than import Stamp
############################################
if [ -n "$check_newer_planet" ] ; then
if [ "$planet_file" -nt "$import_stamp_file" ] ; then
if [ -n "$verbose" ] ; then
echo "----- New File needs updating"
echo "Planet File: `ls -l $planet_file`"
echo "Import Stamp : `ls -l $import_stamp_file`"
fi
else
echo "Postgis Database already Up To Date"
echo "`ls -l $import_stamp_file`"
exit 0
fi
fi
############################################
# Drop the old Database and Database-user
############################################
if [ -n "$drop" ] ; then
test -n "$verbose" && echo "----- Drop complete Database '$database_name' and user '$osm_username'"
echo "CHECKPOINT" | sudo -u postgres psql $quiet
sudo -u postgres dropdb $quiet -Upostgres "$database_name"
sudo -u postgres dropuser $quiet -Upostgres "$osm_username"
fi
############################################
# Create db
############################################
if [ -n "$create_db" ] ; then
test -n "$verbose" && echo
test -n "$verbose" && echo "----- Create Database '$database_name'"
if ! sudo -u postgres createdb -Upostgres $quiet -EUTF8 "$database_name"; then
echo "!!!!!! ERROR: Creation of '$database_name' Failed"
exit -1
fi
if ! sudo -u postgres createlang plpgsql "$database_name"; then
echo "!!!!!! ERROR: Creation Failed"
exit -1
fi
lwpostgis="/usr/share/postgresql-8.4-postgis/lwpostgis.sql"
test -s $lwpostgis || lwpostgis="/usr/share/postgresql-8.3-postgis/lwpostgis.sql"
test -s $lwpostgis || lwpostgis="/usr/share/postgresql-8.2-postgis/lwpostgis.sql"
test -s $lwpostgis || lwpostgis="`ls /usr/share/postgresql-*-postgis/lwpostgis.sql| sort -n | head 1`"
if [ ! -s $lwpostgis ] ; then
echo "!!!!!! ERROR: Cannot find $lwpostgis"
exit -1
fi
if sudo -u postgres psql $quiet -Upostgres "$database_name" <${lwpostgis} ; then
echo "Enabling spacial Extentions done with '$lwpostgis'"
else
echo "!!!!!! ERROR: Creation with '$lwpostgis' Failed"
exit -1
fi
fi
############################################
# Create db-user
############################################
if [ -n "$create_db_user" ] ; then
test -n "$verbose" && echo "----- Create Database-user '$osm_username'"
sudo -u postgres createuser -Upostgres $quiet -S -D -R "$osm_username" || exit -1
fi
if [ -n "$grant_all_rights_to_user_osm" ] ; then
test -n "$verbose" && echo
test -n "$verbose" && echo "----- Grant rights on Database '$database_name' for '$osm_username'"
(
echo "GRANT ALL ON SCHEMA PUBLIC TO \"$osm_username\";"
echo "GRANT ALL on geometry_columns TO \"$osm_username\";"
echo "GRANT ALL on spatial_ref_sys TO \"$osm_username\";"
echo "GRANT ALL ON SCHEMA PUBLIC TO \"$osm_username\";"
) | sudo -u postgres psql $quiet -Upostgres "$database_name"
fi
############################################
# Create a Database user for all users specified (*) or available on the system. Except root
############################################
if [ -n "$create_db_users" ] ; then
if [ "$create_db_users" = "*" ] ; then
echo "Create DB User for every USER"
create_db_users=''
# try to see if all users above uid=1000 are interesting
all_users=`cat /etc/passwd | sed 's/:/ /g' | while read user pwd uid rest ; do test "$uid" -ge "1000" || continue; echo $user; done`
echo "all_users: $all_users"
for user in $all_users ; do
echo $user | grep -q -e root && continue
echo $user | grep -q -e "$osm_username" && continue
echo $user | grep -q -e "nobody" && continue
echo "$create_db_users" | grep -q " $user " && continue
create_db_users=" $create_db_users $user "
done
fi
# This is not good; this probably broke my postgres installation
# dpkg --purge postgresql-8.2
# Stopping PostgreSQL 8.2 database server: main* Error: The cluster is owned by user id 107 which does not exist any more
# apt-get -f install postgresql-8.2
# Starting PostgreSQL 8.2 database server: main* Error: The cluster is owned by user id 107 which does not exist any more
#if false ; then
for user in $create_db_users; do
echo " Create DB User for $user"
sudo -u postgres createuser $quiet -Upostgres --no-superuser --no-createdb --no-createrole "$user"
done
#fi
fi
############################################
# Create Database tables with osm2pgsql
############################################
if [ -n "$db_table_create" ] ; then
if ! [ -x "$osm2pgsql_cmd" ]; then
echo "!!!!!! ERROR: Cannot execute '$osm2pgsql_cmd'" 1>&2
exit -1
fi
echo ""
echo "--------- Unpack and import $planet_file"
cd /usr/share/openstreetmap/
$sudo_cmd $osm2pgsql_cmd --create "$database_name"
fi
############################################
# Add SRID spatial_ref_sys
############################################
if [ -n "$db_add_spatial_ref_sys" ] ; then
test -s "$srid_spatial_ref_sys" || srid_spatial_ref_sys="/usr/share/postgresql-8.4-postgis/spatial_ref_sys.sql"
test -s "$srid_spatial_ref_sys" || srid_spatial_ref_sys="/usr/share/postgresql-8.3-postgis/spatial_ref_sys.sql"
test -s "$srid_spatial_ref_sys" || srid_spatial_ref_sys="/usr/share/postgresql-8.2-postgis/spatial_ref_sys.sql"
test -s "$srid_spatial_ref_sys" || srid_spatial_ref_sys="/usr/share/postgresql-8.*-postgis/spatial_ref_sys.sql"
test -s "$srid_spatial_ref_sys" || srid_spatial_ref_sys="/usr/share/postgresql-*-postgis/spatial_ref_sys.sql"
if [ ! -s $srid_spatial_ref_sys ] ; then
echo "!!!!!! ERROR: Cannot find $srid_spatial_ref_sys"
exit -1
fi
if sudo -u postgres psql $quiet -Upostgres "$database_name" <${srid_spatial_ref_sys} ; then
echo "Adding '$srid_spatial_ref_sys'"
else
echo "!!!!!! ERROR: Creation Failed"
exit -1
fi
fi
############################################
# Add SRID 900913
############################################
if [ -n "$db_add_900913" ] ; then
test -s "$srid_900913" || srid_900913="`dirname $0`/900913.sql"
test -s "$srid_900913" || srid_900913="$HOME/svn.openstreetmap.org/applications/utils/export/osm2pgsql/900913.sql"
test -s "$srid_900913" || srid_900913="/usr/share/mapnik/900913.sql"
if [ ! -s $srid_900913 ] ; then
echo "!!!!!! ERROR: Cannot find $srid_900913"
exit -1
fi
if sudo -u postgres psql $quiet -Upostgres "$database_name" <${srid_900913} ; then
echo "Adding '$srid_900913'"
else
echo "!!!!!! ERROR: Creation Failed"
exit -1
fi
fi
############################################
# Grant all rights on the gis Database to all system users or selected users in the system
############################################
if [ -n "$grant_db_users" ] ; then
if [ "$grant_db_users" = "*" ] ; then
echo "-------- GRANT Rights to every USER"
grant_db_users=''
for user in `users` ; do
echo "$user" | grep -q "root" && continue
echo " $grant_db_users " | grep -q " $user " && continue
grant_db_users="$grant_db_users $user"
done
fi
test -n "$verbose" && echo "Granting rights to users: '$grant_db_users'"
for user in $grant_db_users; do
echo "Granting all rights to user '$user' for Database '$database_name'"
(
echo "GRANT ALL on geometry_columns TO \"$user\";"
echo "GRANT ALL ON SCHEMA PUBLIC TO \"$user\";"
echo "GRANT ALL on spatial_ref_sys TO \"$user\";"
echo "GRANT ALL on TABLE planet_osm_line TO \"$user\";"
echo "GRANT ALL on TABLE planet_osm_point TO \"$user\";"
echo "GRANT ALL on TABLE planet_osm_roads TO \"$user\";"
echo "GRANT ALL on TABLE planet_osm_polygon TO \"$user\";"
)| sudo -u postgres psql $quiet -Upostgres "$database_name" || true
done
fi
############################################
# Fill Database from planet File
############################################
if [ -n "$planet_fill" ] ; then
if ! [ -x "$osm2pgsql_cmd" ]; then
echo "!!!!!! ERROR: Cannot execute '$osm2pgsql_cmd'" 1>&2
exit -1
fi
echo ""
echo "--------- Unpack and import $planet_file"
echo "Import started: `date`" >>"$import_log"
cd /usr/share/openstreetmap/
$sudo_cmd $osm2pgsql_cmd --database "$database_name" $planet_file
rc=$?
if [ "$rc" -gt "0" ]; then
echo "`date`: Import With Error $rc:" >> "$import_log"
echo "`ls -l $planet_file` import --> rc($rc)" >> "$import_log"
echo "!!!!!!!! ERROR while running '$sudo_cmd $osm2pgsql_cmd --database "$database_name" $planet_file'"
echo "Creation with for Database "$database_name" from planet-file '$planet_file' with '$osm2pgsql_cmd' Failed"
echo "see Logfile for more Information:"
echo "less $import_log"
exit -1
fi
echo "`date`: Import Done: `ls -l $planet_file` import --> $rc" >> "$import_log"
echo "`date`: `ls -l $planet_file` import --> $rc" >>$import_stamp_file
touch --reference=$planet_file $import_stamp_file
fi
############################################
# Create GpsDrive POI-Database
############################################
if [ -n "$db_add_gpsdrive_poitypes" ] ; then
if ! [ -x "$cmd_osm2poidb" ]; then
echo "!!!!!! ERROR: Cannot execute gpsdrive_poitypes: '$cmd_osm2poidb'" 1>&2
exit -1
fi
echo ""
echo "--------- Create GpsDrive POI-Database $osmdb_file"
bunzip2 -c $planet_file | sudo $cmd_osm2poidb -w -f $geoinfodb_file -o $osmdb_file STDIN
rc=$?
if [ "$rc" -ne "0" ]; then
echo "!!!!!!! ERROR: cannot create POI Database"
exit -1
fi
fi
############################################
# Dump the complete Database
############################################
if [ -n "$postgis_mapnik_dump" ] ; then
# get Database Content with Dump
postgis_mapnik_dump_dir=`dirname $postgis_mapnik_dump`
mkdir -p "$postgis_mapnik_dump_dir"
case "$postgis_mapnik_dump" in
*.bz2)
$sudo_cmd pg_dump --data-only -U "$osm_username" "$database_name" | bzip2 >"$postgis_mapnik_dump"
;;
*.gz)
$sudo_cmd pg_dump --data-only -U "$osm_username" "$database_name" | gzip >"$postgis_mapnik_dump"
;;
*)
$sudo_cmd pg_dump --data-only -U "$osm_username" "$database_name" >"$postgis_mapnik_dump"
;;
esac
if [ "$?" -gt "0" ]; then
echo "Error While dumping Database"
fi
fi
############################################
# Mirror the planet-dump File from planet.openstreetmap.de
############################################
if [ -n "$mirror_dump" ] ; then
test -n "$verbose" && echo "----- Mirroring planet-dump File"
wget -v --mirror http://planet.openstreetmap.de/planet.osm.sql.bz2 \
--no-directories --directory-prefix=$planet_dir/
fi
############################################
# Fill Database from Dump File
############################################
if [ -n "$fill_from_dump" ] ; then
echo ""
echo "--------- Import from Dump '$fill_from_dump'"
sudo -u postgres createdb -T template0 $database_name
case "$fill_from_dump" in
*.bz2)
test -n "$verbose" && echo "Uncompress File ..."
bzip2 -dc "$fill_from_dump" | $sudo_cmd psql $quiet "$database_name"
;;
*.gz)
test -n "$verbose" && echo "Uncompress File ..."
gzip -dc "$fill_from_dump" | $sudo_cmd psql $quiet "$database_name"
;;
*)
test -n "$verbose" && echo "Import uncompressed File ..."
$sudo_cmd psql $quiet "$database_name" <"$fill_from_dump"
;;
esac
if [ "$?" -gt "0" ]; then
echo "Error While reding Dump into Database"
fi
fi
############################################
# Check number of entries in Database
############################################
if [ -n "$count_db" ] ; then
echo ""
echo "--------- Check Number of lines in Database '$database_name'"
# Get the Table names
if [ -n "$osm_username" ]; then
table_owner=" AND tableowner ='$osm_username' ";
fi
table_names=`echo "SELECT tablename from pg_catalog.pg_tables where schemaname = 'public' $tableowner;" | \
$sudo_cmd psql "$database_name" -h /var/run/postgresql | grep -E -e '^ planet'`
echo "Counting entries in all Tables (" $table_names ")"
for table in $table_names; do
echo -n "Table $table = "
echo "SELECT COUNT(*) from $table;" | \
$sudo_cmd psql gis -h /var/run/postgresql | grep -v -e count -e '------' -e '1 row' | head -1
done
fi