From d2e4790f5364fc76ef134558d0bcdb84f9ca8c6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Szczur?= Date: Sun, 26 Jan 2020 18:18:33 +0100 Subject: [PATCH] The name of the building is not presented --- content/en/exercises/intro/14.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/exercises/intro/14.md b/content/en/exercises/intro/14.md index 0e9ee38..17755af 100644 --- a/content/en/exercises/intro/14.md +++ b/content/en/exercises/intro/14.md @@ -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