stud

study spacejunk
Log | Files | Refs | LICENSE

commit 395c52d4f4697657b56a1a5d44c58f23a967a821 (tree)
parent 747cb1f42760f7e74229b2fda0fc51574c36e78a
Author: Motiejus Jakštys <motiejus@uber.com>
Date:   Sat, 17 Apr 2021 13:49:05 +0300

more debugging

Diffstat:
MIV/Makefile | 4++--
MIV/aggregate-rivers.sql | 2+-
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/IV/Makefile b/IV/Makefile @@ -1,6 +1,6 @@ SOURCE ?= lithuania-latest.osm.pbf -#WHERE ?= name like '%%' -WHERE ?= name='Visinčia' OR name='Šalčia' OR name='Nemunas' OR name='Žeimena' OR name='Lakaja' +WHERE ?= name like '%' +#WHERE ?= name='Visinčia' OR name='Šalčia' OR name='Nemunas' OR name='Žeimena' OR name='Lakaja' SLIDES = slides-2021-03-29.pdf NON_ARCHIVABLES = notes.txt referatui.txt slides-2021-03-29.txt diff --git a/IV/aggregate-rivers.sql b/IV/aggregate-rivers.sql @@ -36,5 +36,5 @@ insert into aggregate_rivers_tmp where waterway in ('river', 'stream', 'canal') and :where; drop table if exists agg_rivers; -create table agg_rivers as (select * from aggregate_rivers() where st_length(way) > 20000); +create table agg_rivers as (select * from aggregate_rivers() where st_length(way) >= 50000); drop table aggregate_rivers_tmp;