fix: query for pedestrian ways

This commit is contained in:
knoflook 2025-02-23 23:31:22 +01:00
parent 6331c264c7
commit 422fb93766

View File

@ -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