Skip to content

Instantly share code, notes, and snippets.

@ewg118
Last active August 29, 2015 14:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ewg118/7eb155ed89f04219af0f to your computer and use it in GitHub Desktop.
Save ewg118/7eb155ed89f04219af0f to your computer and use it in GitHub Desktop.
Visualizing Greek coin production
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX geo: <http://www.w3.org/2003/01/geo/wgs84_pos#>
PREFIX nm: <http://nomisma.org/id/>
PREFIX nmo: <http://nomisma.org/ontology#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
SELECT ?label ?lat ?long WHERE {
?mints a nmo:Mint ;
skos:prefLabel ?label ;
dcterms:isPartOf nm:greek_numismatics ;
geo:location ?loc .
?loc geo:lat ?lat ;
geo:long ?long
FILTER langMatches( lang(?label), "en" )
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment