Created
August 19, 2015 00:56
-
-
Save justgo129/0ad8ad99cf30e7370d8b to your computer and use it in GitHub Desktop.
This file contains hidden or 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 dcterms: <http://purl.org/dc/terms/> | |
PREFIX dbpedia: <http://dbpedia.org/resource/> | |
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> | |
PREFIX gcis: <http://data.globalchange.gov/gcis.owl#> | |
SELECT DISTINCT | |
str(?chapterTitle) as ?Chapter_Title | |
str(?findingNumber) as ?Finding_Number | |
str(?findingStatement) as ?Finding_Text | |
?finding as ?Finding_ID | |
WHERE { | |
?report a gcis:Report . | |
?report dcterms:title "Climate Change Impacts in the United States: The Third National Climate Assessment"^^xsd:string . | |
?report gcis:hasChapter ?chapter . | |
?chapter dcterms:title ?chapterTitle . | |
?chapter gcis:chapterNumber ?chapterNumber . | |
?chapter gcis:hasFinding ?finding . | |
?finding gcis:findingNumber ?findingNumber . | |
?finding gcis:findingStatement ?findingStatement . | |
} | |
ORDER BY ?chapterNumber ?findingNumber |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment