Skip to content

Instantly share code, notes, and snippets.

@tts
Last active November 10, 2016 14:03
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 tts/9dbeee09c08cf4312077f9ce723dc50e to your computer and use it in GitHub Desktop.
Save tts/9dbeee09c08cf4312077f9ce723dc50e to your computer and use it in GitHub Desktop.
SPARQL query for searching Springer Computer Science conferences not indexed by Scopus (see http://lod.springer.com/wiki/bin/view/Linked+Open+Data/About)
PREFIX spr-p: <http://lod.springer.com/data/ontology/property/>
PREFIX spr-c: <http://lod.springer.com/data/ontology/class/>
SELECT ?volume ?title ?subtitle ?acronym ?isbn ?eisbn ?scopus ?sdate WHERE {
?volume spr-p:hasConference ?conf ;
spr-p:isIndexedByScopus ?scopus ;
spr-p:title ?title ;
spr-p:subtitle ?subtitle ;
spr-p:bookSeriesAcronym ?acronym ;
spr-p:ISBN ?isbn ;
spr-p:EISBN ?eisbn ;
spr-p:scopusSearchDate ?sdate; FILTER (?scopus = "false"^^<http://www.w3.org/2001/XMLSchema#boolean>)
}
GROUP BY ?volume ?title ?subtitle ?acronym ?isbn ?eisbn ?scopus ?sdate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment