Skip to content

Instantly share code, notes, and snippets.

@fumi
Created May 30, 2014 06:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fumi/1ca97fddb58f7d37f374 to your computer and use it in GitHub Desktop.
Save fumi/1ca97fddb58f7d37f374 to your computer and use it in GitHub Desktop.
PREFIX booth: <http://lod.ac/ns/booth#>
PREFIX cinii: <http://ci.nii.ac.jp/ns/1.0/>
PREFIX dc: <http://purl.org/dc/terms/>
PREFIX dc11: <http://purl.org/dc/elements/1.1/>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX kaken: <http://kaken.nii.ac.jp/ns#>
PREFIX rns: <http://rns.nii.ac.jp/ns#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX prism: <http://prismstandard.org/namespaces/basic/2.0/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX schema: <http://schema.org/>
SELECT DISTINCT ?booth ?boothTitle ?boothResearcherName
WHERE {
?author a kaken:Researcher ;
foaf:lastName "武田"@ja ;
foaf:firstName "英明"@ja ;
foaf:knows{1,4} ?coauthor .
FILTER (?author != ?coauthor)
?boothResearcher owl:sameAs ?coauthor ;
foaf:name ?boothResearcherName .
?booth dc:creator ?boothResearcher ; rdfs:label ?boothTitle .
FILTER (lang(?boothTitle) = 'ja')
FILTER(lang(?boothResearcherName) = 'ja')
}
LIMIT 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment