diff --git a/scripts/02-way-queries b/scripts/02-way-queries index 0ede4c6..9df7310 100755 --- a/scripts/02-way-queries +++ b/scripts/02-way-queries @@ -12,6 +12,6 @@ for district in $WORKDATADIR/01/*; do outfile="$WORKDATADIR/02/$(basename $district)-$(( $qcounter / 5 ))" # limit to 5 queries per file qcounter="$(( $qcounter + 1 ))" str=$(echo "$street" | sed -e 's/^[[:space:]]*//') - printf "way(area.searchArea)[\"name\"=\"%s\"][\"highway\"~\"residential|motorway|unclassified|trunk|primary|secondary|tertiary|living_street|service|footway\"];\n" "$str" >> $outfile + printf "way(area.searchArea)[\"name\"=\"%s\"][\"highway\"~\"residential|motorway|unclassified|trunk|primary|secondary|tertiary|living_street|service|footway|pedestrian\"];\n" "$str" >> $outfile done done