View nomisma-pleiades-json
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 | |
} |
View nomisma-images
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#> |
View gist:6b0b99d953ae1f4d8eaf
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])"/> |
View rome_labels
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 | |
} |
View gist:3c55da72510cae200f93
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 . |
View rome_metadata_semicolons
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 ; |
View gist:00be8e5671a795a147ed
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)) |
View gist:8161a9e118f3b8803a97
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" ) | |
} |
View gist:5e94523486541f3d89e2
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 | |
} |
View gist:7eb155ed89f04219af0f
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