Last active
November 10, 2016 14:03
-
-
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)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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