Skip to content

Commit f5b5121

Browse files
authored
Update intro-to-linked-data.md
- Replace live links within inline code
1 parent 87039a2 commit f5b5121

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

en/lessons/intro-to-linked-data.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ As I mentioned at the beginning, *Programming Historian* has [a complete lesson]
321321

322322
We're going to run our SPARQL queries on [DBpedia](https://en.wikipedia.org/wiki/DBpedia), which is a huge LOD set derived from Wikipedia. As well as being full of information that is very difficult to find through the usual Wikipedia interface, it has several SPARQL "end points" - interfaces where you can type in SPARQL queries and get results from DBpedia's triples.
323323

324-
The SPARQL query end point I use is called [snorql](http://dbpedia.org/snorql/). These end points occasionally seem to go offline, so if that should be the case, try searching for *dbpedia sparql* and you should find a similar replacement.
324+
The SPARQL query end point I use is called snorql `http://dbpedia.org/snorql/`. These end points occasionally seem to go offline, so if that should be the case, try searching for *dbpedia sparql* and you should find a similar replacement.
325325

326326
If you go to the snorql URL above you will see at first that a number of prefixes have already been declared for us, which is handy. You'll recognise some of the prefixes now too.
327327

@@ -375,7 +375,7 @@ Run the query. Does it work for you? I get a big list of historians.
375375

376376
{% include figure.html filename="en-or-intro-to-linked-data-05.png" caption="Figure 5. Historians, according to DBpedia." %}
377377

378-
So this works for creating lists, which is useful, but it would much more powerful to combine lists, to get intersections of sests. I found a couple more things that might be interesting to query in Lyndal Roper's DBpedia attributes: <http://dbpedia.org/class/yago/WikicatBritishHistorians> and <http://dbpedia.org/class/yago/WikicatWomenHistorians>. It's very easy to combine these by asking for a variable to be returned (in our case this is `?name`) and then using that in multiple lines of a query. Note as well the space and full point at the end of the first line beginning with `?name`:
378+
So this works for creating lists, which is useful, but it would much more powerful to combine lists, to get intersections of sests. I found a couple more things that might be interesting to query in Lyndal Roper's DBpedia attributes: `http://dbpedia.org/class/yago/WikicatBritishHistorians` and `http://dbpedia.org/class/yago/WikicatWomenHistorians`. It's very easy to combine these by asking for a variable to be returned (in our case this is `?name`) and then using that in multiple lines of a query. Note as well the space and full point at the end of the first line beginning with `?name`:
379379

380380
SELECT ?name
381381
WHERE {

0 commit comments

Comments
 (0)