Skip to content

Instantly share code, notes, and snippets.

@ashepherd
Created August 13, 2015 12:55
Show Gist options
  • Save ashepherd/093563f6f42e138b6efd to your computer and use it in GitHub Desktop.
Save ashepherd/093563f6f42e138b6efd to your computer and use it in GitHub Desktop.
List URI and term name for all terms in the L05 NERC vocabulary
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT distinct ?entrykey ?entryterm
WHERE {
<http://vocab.nerc.ac.uk/collection/L05/current/> skos:member ?entrykey .
?entrykey skos:prefLabel ?entryterm
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment