stud/IV/Makefile

21 lines
435 B
Makefile
Raw Normal View History

2021-03-13 16:46:32 +02:00
SOURCE ?= lithuania-latest.osm.pbf
2021-03-13 16:44:31 +02:00
WHERE ?= name='Visinčia' OR name='Šalčia' OR name='Nemunas'
2021-03-13 15:53:22 +02:00
.faux_filter-rivers: .faux_import-osm
2021-03-13 16:44:31 +02:00
./db -v where="$(WHERE)" -f aggregate-rivers.sql
2021-03-13 15:53:22 +02:00
touch $@
2021-03-13 16:46:32 +02:00
.faux_import-osm: $(SOURCE) .faux.db
2021-03-13 15:53:22 +02:00
PGPASSWORD=osm osm2pgsql \
-c --multi-geometry \
-H 127.0.0.1 -d osm -U osm \
$<
touch $@
.faux.db:
./db start
touch $@
2021-03-13 16:46:32 +02:00
$(SOURCE):
wget http://download.geofabrik.de/europe/$@