This page (revision-64) was last changed on 05-May-2021 20:05 by Albrecht Striffler

This page was created on 24-Jun-2014 12:41 by Joba Baumeister

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
64 05-May-2021 20:05 7 KB Albrecht Striffler to previous
63 05-May-2021 20:04 7 KB Albrecht Striffler to previous | to last
62 09-Dec-2019 14:24 7 KB Albrecht Striffler to previous | to last
61 09-Dec-2019 14:23 7 KB Albrecht Striffler to previous | to last

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 3 changed one line
The Simpsons is a popular comic televisions series. A comprehensive overview (in german) is [Simpsonspedia|http://simpsonspedia.net].
The Simpsons is a popular comic televisions series. A comprehensive overview (in german) is [Simpsonspedia|http://simpsonspedia.net].\\
This page shows, how we implement the simpsons ontology in KnowWE.
At line 6 added 2 lines
Also, please check out our visualization docs, which are based on the ontology defined here: [Doc SparqlVisualization], [Doc ConceptVisualization]
At line 7 removed one line
At line 14 added one line
! Classes
At line 13 removed 2 lines
! Classes
At line 19 changed one line
rdfs:label "Lebewesen"@de, "Living being".
rdfs:label "Lebewesen"@de, "Living being"@en.
At line 23 removed one line
a rdfs:Class;
At line 65 removed one line
At line 138 changed one line
rdf:type si:SimpsonsConcept.
rdfs:subClassOf si:SimpsonsConcept.
At line 145 removed one line
At line 157 removed one line
At line 168 changed one line
rdfs:label "Homer Sompson" ;
rdfs:label "Homer Simpson" ;
At line 189 changed one line
si:sibling si:lisa ;
si:sibling si:lisa, si:maggie ;
At line 253 removed one line
At line 258 removed one line
At line 266 changed one line
?x rdf:type si:Animal ;
?x rdf:type si:Human ;
At line 274 removed one line
At line 301 removed one line
At line 318 removed one line
At line 336 removed one line
At line 342 changed one line
SELECT ?name
SELECT ?name ?husband
At line 344 added one line
! Hierarchical Table
At line 346 added 20 lines
%%Sparql
SELECT (SAMPLE(?sub) as ?sub) (SAMPLE(?par) as ?par) (SAMPLE(?name) as ?name) ?concept
WHERE {
{
# bind si:abraham as root node
BIND (si:abraham as ?sub) .
}
UNION
{
# collect all parent child relations (will be conntected automagically to si:abraham)
?sub si:parent ?par ;
}
# display name and concept as table columns
?sub rdfs:label ?name .
BIND (?sub as ?concept) .
} GROUP BY ?concept
@tree: true
@showQuery: true
%
At line 364 changed one line
@ruleset: OWL2_RL_REDUCED_OPTIMIZED
@ruleset: OWL_HORST_OPTIMIZED_WITH_PROPERTY_CHAINS
At line 367 changed one line
Let's us the namespace {{si}} for the resources.
Let's use the namespace {{si}} for the resources.