Created
April 14, 2014 10:52
-
-
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/)
This file contains 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 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