Skip to content

Instantly share code, notes, and snippets.

@adamml
Created April 14, 2014 10:52
Show Gist options
  • Save adamml/10637423 to your computer and use it in GitHub Desktop.
Save adamml/10637423 to your computer and use it in GitHub Desktop.
Get the mapping between the SeaVoX Ports Gazetteer and the Ordnance Survey Linked Data store (run against http://vocab.nerc.ac.uk/sparql/)
PREFIX skos:<http://www.w3.org/2004/02/skos/core#>
PREFIX owl:<http://www.w3.org/2002/07/owl#>
select * where
{
<http://vocab.nerc.ac.uk/collection/C38/current/> skos:member ?a.
?a skos:prefLabel ?c.
?a owl:sameAs ?b
FILTER REGEX(str(?b), "ordnancesurvey")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment