This experimental graph contains data provided by three different projects participating in the European network on digital academic history Héloïse:
The data are mapped using the symogih.org ontology.
Be aware that URIs are not dereferenced yet, so don't click them.
The queries are to be entered in the 'Query text' field of the Virtuoso SPARQL Query Editor, replacing the existing example query.
Following lists of prefixes must be inserted on the top of each query:
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX viaf: <http://viaf.org/viaf/>
PREFIX geo: <http://www.w3.org/2003/01/geo/wgs84_pos#>
PREFIX sym: <http://symogih.org/ontology/>
PREFIX syr: <http://symogih.org/resource/>
SELECT *
WHERE
{ GRAPH <https://dataforhumanities.org/sparql-endpoint/heloise>
{ ?s sym:hasObjectType syr:Actor .
?s sym:standardActorName ?name
}
}
Data are mapped using the symogih.org type of knowledge unit Naissance – TyIn14.
Places of origin are intenionally 'forced' into birth places to stress the need of reflection on data model alignement.
SELECT ?o ?name ?s ?birthDate ?dateCertainty ?placeOfBirth ?placeOfOrigin
WHERE
{ GRAPH <https://dataforhumanities.org/sparql-endpoint/heloise>
{ ?s sym:hasKnowledgeUnitType syr:TyIn14 .
?r sym:isComponentOf ?s .
?r sym:associatesObject ?o .
?o sym:standardActorName ?name
OPTIONAL
{ ?d sym:dates ?s .
?d sym:dateTime ?birthDate .
?d sym:datingCertainty ?dateCertainty
}
OPTIONAL
{ ?r1 sym:isComponentOf ?s .
?r1 sym:hasRoleType syr:TyRo16 .
?r1 sym:roleObjectLabelAccordingToSource ?placeOfOrigin
}
OPTIONAL
{ ?r2 sym:isComponentOf ?s .
?r2 sym:hasRoleType syr:TyRo8 .
?r2 sym:roleObjectLabelAccordingToSource ?placeOfBirth
}
}
}
ORDER BY ?name