SELECT ?item ?lat ?lon WHERE {
?item a <http://nomisma.org/ontology#Mint>.
?item geo:location ?loc .
?loc wgs84_pos:lat ?lat .
?loc wgs84_pos:long ?lon .
}
PREFIX crm: <http://www.cidoc-crm.org/cidoc-crm/>
SELECT ?item ?type ?date ?place ?lat ?lon WHERE {
?item nmo:hasFindspot/crm:P7_took_place_at/crm:P89_falls_within ?place ;
nmo:hasTypeSeriesItem ?type ;
a nmo:NumismaticObject .
?place crm:P89_falls_within+ <http://www.wikidata.org/entity/Q23115> .
?type nmo:hasEndDate ?date .
?place geo:location ?loc .
?loc geo:lat ?lat ;
geo:long ?lon .
} ORDER BY ASC(?date)
PREFIX : <http://www.semanticweb.org/ontologies/2015/1/EPNet-ONTOP_Ontology#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX dcterms: <http://purl.org/dc/terms/>
SELECT ?item ?amphtype ?lat ?lon (count(?item) as ?count)
WHERE {
?amph a :Amphora .
?amph :hasAmphoraType ?amphtypeo .
?amphtypeo dcterms:title ?amphtype .
FILTER (?amphtype = "Gauloise 4")
?amph :carries ?inscription .
?amph :hasFindingPlace ?findplace .
?findplace :fallsWithin ?mun .
?mun a :Municipality .
?mun dcterms:title ?item .
?mun :hasLatitude ?lat .
?mun :hasLongitude ?lon .
} ORDER BY ?item DESC(?count)
via Research-Squirrel-Engineers / HadriansWall
SELECT ?item ?geo ?name ?latin_name ?typeLabel WHERE {
?item rdf:type hw:Fort .
?item geosparql:hasGeometry ?item_geom .
?item_geom geosparql:asWKT ?geo .
?item hw:name ?name .
?item hw:latin_name ?latin_name .
?item a ?type .
?type rdfs:label ?typeLabel.
FILTER NOT EXISTS {
FILTER (?typeLabel = "Fort"@en)
}
}
SELECT DISTINCT ?item ?geo ?itemLabel ?stone ?stoneLabel ?readingLabel WHERE {
?stone oghamonto:shows ogham:OW6.
?stone rdfs:label ?stoneLabel .
?stone a oghamonto:OghamStone_CIIC .
?stone oghamonto:disclosedAt ?item .
?item rdfs:label ?itemLabel .
?item <http://www.opengis.net/ont/geosparql#hasGeometry> ?geom_obj .
?geom_obj geosparql:asWKT ?geo .
?stone oghamonto:carries ?inscription .
?inscription oghamonto:identifiedAs ?reading .
?reading rdfs:label ?readingLabel .
FILTER(regex(?readingLabel, "MAQI"))
}
SELECT ?item ?geo ?label ?ref ?spatialType {
?item a <http://fuzzy-sl.squirrel.link/ontology/Site> .
?item rdfs:label ?label.
?item <http://fuzzy-sl.squirrel.link/ontology/hasReference> ?ref .
?item <http://fuzzy-sl.squirrel.link/ontology/spatialType> ?spatialType .
?item <http://www.opengis.net/ont/geosparql#hasGeometry> ?item_geom .
?item_geom <http://www.opengis.net/ont/geosparql#asWKT> ?geo .
}
http://fuzzy-sl.squirrel.link/ontology/