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 geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> | |
PREFIX skos: <http://www.w3.org/2004/02/skos/core#> | |
PREFIX osgeo: <http://data.ordnancesurvey.co.uk/ontology/geometry/> | |
SELECT ?place ?pleiades ?geoJSON WHERE { | |
?place skos:relatedMatch ?pleiades . | |
?place geo:location ?loc . | |
?loc osgeo:asGeoJSON ?geoJSON | |
} |
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 rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | |
PREFIX dcmitype: <http://purl.org/dc/dcmitype/> | |
PREFIX dcterms: <http://purl.org/dc/terms/> | |
PREFIX foaf: <http://xmlns.com/foaf/0.1/> | |
PREFIX geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> | |
PREFIX nm: <http://nomisma.org/id/> | |
PREFIX nmo: <http://nomisma.org/ontology#> | |
PREFIX org: <http://www.w3.org/ns/org#> | |
PREFIX osgeo: <http://data.ordnancesurvey.co.uk/ontology/geometry/> | |
PREFIX skos: <http://www.w3.org/2004/02/skos/core#> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0"> | |
<xsl:template match="/"> | |
<xsl:for-each select="descendant::*:fsDecl"> | |
<xsl:variable name="id" select="@xml:id"/> | |
<xsl:value-of select="*:fsDescr"/> | |
<xsl:text>: </xsl:text> | |
<xsl:value-of select="count(ancestor::*:TEI/descendant::*:fs[@type=$id])"/> |
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
SELECT ?label WHERE { | |
<http://nomisma.org/id/rome> <http://www.w3.org/2004/02/skos/core#prefLabel> ?label | |
} |
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 rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | |
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 skos: <http://www.w3.org/2004/02/skos/core#> | |
SELECT ?label ?type ?field ?lat ?long WHERE { | |
nm:rome skos:prefLabel ?label . | |
nm:rome rdf:type ?type . | |
nm:rome dcterms:isPartOf ?field . |
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 rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | |
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 skos: <http://www.w3.org/2004/02/skos/core#> | |
SELECT ?label ?type ?field ?lat ?long WHERE { | |
nm:rome skos:prefLabel ?label ; | |
rdf:type ?type ; | |
dcterms:isPartOf ?field ; |
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 nm: <http://nomisma.org/id/> | |
PREFIX skos: <http://www.w3.org/2004/02/skos/core#> | |
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> | |
SELECT ?label WHERE { | |
nm:rome skos:prefLabel ?label | |
} ORDER BY ASC(xsd:string(?label)) |
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 nm: <http://nomisma.org/id/> | |
PREFIX skos: <http://www.w3.org/2004/02/skos/core#> | |
SELECT ?label WHERE { | |
nm:rome skos:prefLabel ?label . | |
FILTER langMatches( lang(?label), "en" ) | |
} |
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 nmo: <http://nomisma.org/ontology#> | |
SELECT ?mints WHERE { | |
?mints a nmo:Mint | |
} |
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 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 ; |
OlderNewer