Skip to content

Commit ef1a1e5

Browse files
authored
Update 05-intro_to_querying.md
1 parent b1cbf72 commit ef1a1e5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

episodes/05-intro_to_querying.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ In the first step we searched for cats. It is also possible to search for images
170170

171171
```
172172
#defaultView:ImageGrid
173-
#Normally, the default output is a table, but with the DefaultView we can directly specify that the results should be displayed in a grid
173+
#Normally, the default output is a table, but with the defaultView we can directly specify that the results should be displayed in a grid
174174
175175
SELECT ?item ?itemLabel ?itemPic
176176
#Show me the item, label and the picture of it.
@@ -182,7 +182,7 @@ WHERE
182182
?item wdt:P18 ?itemPic. #Show me only cats with pictures. If you want to include very cats in your search, you need to place the Option{} function in front.
183183
184184
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
185-
#Helps get the label in your language, if not, then en(glish) language
185+
#Helps get the label in your language, if not, then english is selected as language
186186
}
187187
188188
```
@@ -215,7 +215,7 @@ LIMIT 15
215215
#Limit the shown results down to 15.
216216
```
217217

218-
![](fig/episode_05_Bubblechart.png){alt='Example of displaying cats in grid format'}
218+
![](fig/episode_05_Bubblechart.png){alt='Bubblechart of books weight by genre'}
219219

220220

221221
**Map of NFDI Consortia in Germany**
@@ -284,7 +284,7 @@ HAVING (?participantsCount > 4)
284284
285285
```
286286

287-
![](fig/episode_05_Barchart.png){alt='Number of participants in NFDI consortia visualized'}
287+
![](fig/episode_05_Barchart.png){alt='Number of participants in NFDI consortia visualized as bar chart'}
288288

289289
**NFDI Consortia in Berlin, Germany**
290290

@@ -300,7 +300,7 @@ SELECT ?affiliate ?affiliateLabel ?affiliatepicture ?NFDIK ?NFDIKLabel ?NFDIKpic
300300
301301
WHERE
302302
{
303-
?NFDIK wdt:P31 wd:Q98270496. #Give me all accepted NFDI consortia.
303+
?NFDIK wdt:P31 wd:Q98270496. #Get me all accepted NFDI consortia.
304304
?NFDIK wdt:P1416 ?affiliate. #Get the affiliates of the accepted NFDI.
305305
?affiliate wdt:P131 ?location. #Provide me with the location of the affiliated parties.
306306
@@ -315,7 +315,7 @@ WHERE
315315
#Helps to get the label in your language, if not, then english language is selected
316316
```
317317

318-
![](fig/episode_05_Graph.png){alt='NFDI Consortia in Berlin, Germany'}
318+
![](fig/episode_05_Graph.png){alt='the relationship between NFDI Consortia in Berlin, Germany'}
319319

320320
**Map of libraries**
321321

0 commit comments

Comments
 (0)