Skip to content

Instantly share code, notes, and snippets.

@ostephens
Created November 24, 2013 23:13
Show Gist options
  • Save ostephens/7633750 to your computer and use it in GitHub Desktop.
Save ostephens/7633750 to your computer and use it in GitHub Desktop.
Find all people that BNB believes to have the same year of birth as Jane Austen (based on her VIAF URI)
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX dct: <http://purl.org/dc/terms/>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX bio: <http://purl.org/vocab/bio/0.1/>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT DISTINCT ?name
WHERE {
?person owl:sameAs <http://viaf.org/viaf/102333412> .
?person bio:event ?event .
?event rdf:type bio:Birth .
?event bio:date ?dob .
?e2 bio:date ?dob .
?e2 rdf:type bio:Birth .
?p2 bio:event ?e2 .
?p2 foaf:name ?name
}
LIMIT 1000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment