Skip to content

Instantly share code, notes, and snippets.

@adamml
Last active May 16, 2019 09:17
Show Gist options
  • Save adamml/70d9802f2ebcede0b353349c8307a847 to your computer and use it in GitHub Desktop.
Save adamml/70d9802f2ebcede0b353349c8307a847 to your computer and use it in GitHub Desktop.
Search the P01 Vocabu;lary on the NERC Vocabulary Server
PREFIX dc:<http://purl.org/dc/elements/1.1/>
PREFIX skos:<http://www.w3.org/2004/02/skos/core#>
PREFIX rdf:<http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT ?p ?q WHERE {
<http://vocab.nerc.ac.uk/collection/P01/current/> rdf:type skos:Collection.
<http://vocab.nerc.ac.uk/collection/P01/current/> ?o ?p.
?p skos:prefLabel ?q
FILTER REGEX(lcase(str(?q)), "solar")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment