AriadnePlus/dnet-ariadneplus-graphdb-pu.../src/main/resources/query.txt

171 lines
5.9 KiB
Plaintext

PREFIX aocat: <https://www.ariadne-infrastructure.eu/resource/ao/cat/1.1/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX mine: <http://www.myprefix/>
PREFIX onto: <http://www.ontotext.com/>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
CONSTRUCT {
?record mine:resourcetype "AriadneCatalogEntry" .
?record mine:identifier ?record .
?record mine:publisher ?x .
?x a mine:AgentInfo .
?x mine:name ?publisherName .
?x mine:type ?publisherType .
?archeologicalResourceType a mine:archeologicalResourceType .
?record mine:archeologicalResourceType ?archeologicalResourceType .
?archeologicalResourceType mine:name ?archeologicalResourceTypeName .
?record mine:issued ?issued .
?record mine:resourceType ?resourceType .
?record mine:modified ?modified .
?record mine:nativeSubject ?natSub .
?natSub a mine:NativeSubject .
?natSub mine:prefLabel ?nativeSbj .
?natSub mine:aatId ?aatId .
?natSub mine:aatHeritageData ?aatHeritageData .
#?spatial a mine:Spatial .
?record mine:spatial ?spatial .
?spatial mine:placeName ?spatialPlaceName .
?spatial mine:location ?blocation .
?blocation a mine:AriadneGeoPoint .
?blocation mine:lat ?spatialLocationLat .
?blocation mine:lon ?spatialLocationLon .
?record mine:accessPolicy ?accessPolicy .
?record mine:landingPage ?landingPage .
?record mine:title ?title .
?record mine:accessRights ?accessRights .
?record mine:description ?description .
?record mine:contributor ?contributor .
?contributor a mine:AgentInfo .
?contributor mine:name ?contributorName .
?contributor mine:email ?contributorEmail .
?contributor mine:type ?contributorType .
?record mine:originalId ?originalId .
?record mine:temporal ?t .
?t a mine:AriadneTemporal .
?t mine:periodName ?temporalPeriodName .
?t mine:from ?from .
?t mine:until ?until .
?record mine:language ?language .
?record mine:partOf ?collection .
}
from <https://ariadne-infrastructure.eu/api_________::ariadne_plus::ads::aat>
from <https://ariadne-infrastructure.eu/api_________::ariadne_plus::ads::271>
#from onto:explain
where {
#mandatory statements in our model, to be added in all datasources
#?record aocat:has_title ?title ;
# aocat:has_access_rights ?accessRights ;
# aocat:has_creator / aocat:has_name ?contributorName ;
# aocat:has_creator / aocat:has_email ?contributorEmail ;
# aocat:has_native_subject / skos:prefLabel ?nativeSbj ;
# aocat:has_original_id ?originalId ;
?record aocat:has_language / skos:prefLabel ?language .
optional {
{
?record aocat:has_original_id ?originalId .
}
union
{
?record aocat:has_native_subject ?natSub .
?natSub skos:closeMatch ?aatId .
?natSub owl:sameAs ?aatHeritageData .
?natSub skos:prefLabel ?nativeSbj .
}
union
{
?record aocat:has_creator / aocat:has_name ?contributorName .
}
union
{
?record aocat:has_title ?title .
}
union
{
?record aocat:has_creator / aocat:has_email ?contributorEmail .
}
union
{
?record aocat:has_access_rights ?accessRights .
}
union
{
?record aocat:has_description ?description .
}
union
{
?record aocat:has_access_policy / rdfs:label ?accessPolicy .
}
union
{
?record aocat:has_landing_page / rdfs:label ?landingPage .
}
union
{
?record aocat:has_temporal_coverage ?t .
?t aocat:has_period / skos:prefLabel ?temporalPeriodName .
}
union
{
?record aocat:has_temporal_coverage ?t .
?t aocat:from ?from .
}
union
{
?record aocat:has_temporal_coverage ?t .
?t aocat:until ?until .
}
}
{
select *
where {
#mandatory statements in our model, to be added in all datasources
#?collection aocat:has_publisher / rdfs:label ?publisherName ;
# aocat:has_ARIADNE_subject ?archeologicalResourceType ;
# aocat:has_type / skos:prefLabel ?type .
?record aocat:is_part_of ?collection .
?collection aocat:was_issued ?issued .
optional {
{
?collection aocat:has_publisher / rdfs:label ?publisherName .
}
union
{
?collection aocat:has_ARIADNE_subject ?archeologicalResourceType .
?archeologicalResourceType skos:prefLabel ?archeologicalResourceTypeName .
}
union
{
?collection aocat:has_type / skos:prefLabel ?type .
}
}
#?archeologicalResourceType skos:prefLabel ?archeologicalResourceTypeName .
}
}
union
{
select *
where {
optional {
{
?record aocat:has_spatial_coverage ?spatial .
?spatial aocat:has_place_name ?spatialPlaceName .
}
union
{
?record aocat:has_spatial_coverage ?spatial .
?spatial aocat:has_latitude ?spatialLocationLat ;
aocat:has_longitude ?spatialLocationLon .
BIND(uri(concat('http://www.myprefix/location/', md5(concat(str(?spatialLocationLat), str(?spatialLocationLon))))) as ?blocation)
}
}
}
}
BIND("organization" as ?contributorType) .
BIND("organization" as ?publisherType) .
}