Skip to content

Instantly share code, notes, and snippets.

@justgo129
Created August 19, 2015 00:56
Show Gist options
  • Save justgo129/0ad8ad99cf30e7370d8b to your computer and use it in GitHub Desktop.
Save justgo129/0ad8ad99cf30e7370d8b to your computer and use it in GitHub Desktop.
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