Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The name of the building is not presented #38

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/en/exercises/intro/14.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ code: |
instructions: |
1. As you can see, the first four lines of our query only looks for the ATM. Since we’re going to be querying for __both__ the ATM and the building, just leave the four lines intact and create a few blank lines after it where we will type in the query for the building.
2. As mentioned before, `way`s apart from representing routes and roads can also represent `area`s. A concrete example of this is a building - which is a closed polygon structure defined as a series of points (which we can represent as a way!)
3. So to query for the building, we would need to do a `way` query. Go ahead and write a `way` query, filtering it so that it’s name is what you see on the map viewer.
3. So to query for the building, we would need to do a `way` query. Go ahead and write a `way` query, filtering it so that it’s name is what you see on the map viewer ("Wirtschaftswissenschaften (WIWI)").
4. Since there might be other buildings that are named as such, let’s also filter for the address. Add `["addr:city"=Passau]` as a further filter for our way query.
5. Once you’ve successfully queried for the building, we would still need to print it for the map viewer. Do so by using `out` with the modificator we've used so far for ways.
hint: Use a way query filtered by the name of the building
Expand Down