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 21 changed one line
si:LivingBeing rdfs:subClassOf si:SimpsonsConcept.
si:LivingBeing rdfs:subClassOf si:SimpsonsConcept;
rdfs:label "Lebewesen"@de, "Living being".
At line 23 changed one line
si:Human rdfs:subClassOf si:LivingBeing .
si:Human
rdfs:subClassOf si:LivingBeing ;
a rdfs:Class;
rdfs:label "Mensch"@de, "Human"@en .
At line 25 changed one line
si:Animal rdfs:subClassOf si:LivingBeing .
si:Animal
rdfs:subClassOf si:LivingBeing ;
rdfs:label "Tier"@de, "Animal"@en .
At line 27 changed one line
si:GenderType rdfs:subClassOf si:SimpsonsConcept .
si:GenderType
rdfs:subClassOf si:SimpsonsConcept ;
rdfs:label "Geschlecht"@de, "Gender"@en .
At line 29 changed one line
si:male rdf:type si:GenderType .
si:male
rdf:type si:GenderType ;
rdfs:label "männlich"@de, "male"@en .
At line 31 changed one line
si:female rdf:type si:GenderType .
si:female
rdf:type si:GenderType ;
rdfs:label "weiblich"@de, "female"@en .
At line 33 changed one line
si:Building rdfs:subClassOf si:SimpsonsConcept .
si:Building
rdfs:subClassOf si:SimpsonsConcept ;
rdfs:label "Gebäude"@de, "Building"@en .
At line 35 changed one line
si:Location rdfs:subClassOf si:SimpsonsConcept .
si:Location
rdfs:subClassOf si:SimpsonsConcept ;
rdfs:label "Ort"@de, "Location"@en .
At line 37 changed one line
si:Powerplant rdfs:subClassOf si:Building .
si:Powerplant
rdfs:subClassOf si:Building ;
rdfs:label "Kraftwerk"@de, "Power plant"@en .
At line 238 removed 17 lines
%%SparqlVisualization
SELECT ?x ?edge ?z WHERE {
?x ?y ?z .
?x rdfs:subClassOf si:SimpsonsConcept.
?z rdfs:subClassOf si:SimpsonsConcept.
?x rdfs:subClassOf ?z.
FILTER NOT EXISTS {
?middleObject rdfs:subClassOf si:SimpsonsConcept.
?x rdfs:subClassOf ?middleObject.
?middleObject rdfs:subClassOf ?z.
FILTER (?middleObject != ?x ).
FILTER (?middleObject != ?z ).
}
FILTER (?x != owl:Nothing).
FILTER (?x != ?z).
BIND (" " AS ?edge).
At line 256 removed 12 lines
}
@rankDir: BT
@linkMode: browse
@size: 700
%
%%ConceptVisualization
@concept: si:homer
@config: DefaultVisConfig
%
At line 280 changed one line
?x rdf:type si:Human ;
?x rdf:type si:Animal ;
At line 368 removed 23 lines
! Hierarchical Table
%%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
%