From 17b80c59c3bf5572a5522895e3aaa5d43cf2e47e Mon Sep 17 00:00:00 2001 From: Enrico Ottonello Date: Tue, 29 Mar 2022 12:55:46 +0200 Subject: [PATCH] old collection cenieh 171, no more used --- .../ordered_sparql_insert_cenieh_171.sparql | 178 ------------------ 1 file changed, 178 deletions(-) delete mode 100644 dnet-ariadneplus-graphdb-publisher/src/main/resources/eu/dnetlib/ariadneplus/sparql/enrich/CENIEH/ordered_sparql_insert_cenieh_171.sparql diff --git a/dnet-ariadneplus-graphdb-publisher/src/main/resources/eu/dnetlib/ariadneplus/sparql/enrich/CENIEH/ordered_sparql_insert_cenieh_171.sparql b/dnet-ariadneplus-graphdb-publisher/src/main/resources/eu/dnetlib/ariadneplus/sparql/enrich/CENIEH/ordered_sparql_insert_cenieh_171.sparql deleted file mode 100644 index ebe6d8c..0000000 --- a/dnet-ariadneplus-graphdb-publisher/src/main/resources/eu/dnetlib/ariadneplus/sparql/enrich/CENIEH/ordered_sparql_insert_cenieh_171.sparql +++ /dev/null @@ -1,178 +0,0 @@ -PREFIX aocat: - PREFIX skos: - PREFIX rdf: - PREFIX rdfs: - INSERT { - GRAPH { - ?s aocat:has_type . - rdf:type . - skos:prefLabel "Dataset Collection" - } - } - WHERE { - GRAPH { - ?s rdf:type . - MINUS { - ?s rdf:type . - ?s aocat:has_type ?t . - } - } - }; - PREFIX aocat: - PREFIX rdf: - PREFIX rdfs: - INSERT { - GRAPH { - ?s aocat:has_temporal_coverage . - rdf:type . - rdfs:label "Not provided" . - - } - } - WHERE { - GRAPH { - ?s rdf:type . - MINUS { - ?s rdf:type . - ?s aocat:has_temporal_coverage ?tc . - } - } - }; - - PREFIX aocat: - PREFIX rdf: - PREFIX rdfs: - INSERT { - GRAPH { - ?s aocat:has_name ?label . - } - } - WHERE { - GRAPH { - ?s rdf:type . - ?s rdfs:label ?label . - MINUS { - ?s rdf:type . - ?s aocat:has_name ?name . - } - } - }; - - PREFIX aocat: - PREFIX rdf: - PREFIX rdfs: - INSERT { - GRAPH { - ?s aocat:has_creator . - rdf:type . - rdfs:label "Not provided" . - aocat:has_name "Not provided" . - } - } - WHERE { - GRAPH { - ?s rdf:type . - MINUS { - ?s rdf:type . - ?s aocat:has_creator ?agent . - } - } - }; - - PREFIX aocat: - PREFIX rdf: - PREFIX rdfs: - INSERT { - GRAPH { - ?s aocat:has_responsible . - rdf:type . - rdfs:label "Not provided" . - aocat:has_name "Not provided" . - } - } - WHERE { - GRAPH { - ?s rdf:type . - MINUS { - ?s rdf:type . - ?s aocat:has_responsible ?agent . - } - } - }; - - PREFIX skos: - PREFIX aocat: - PREFIX rdf: - PREFIX rdfs: - - INSERT { - GRAPH { - ?s aocat:has_ARIADNE_subject . - skos:prefLabel "Not provided" . - } - } - WHERE { - GRAPH { - ?s rdf:type . - MINUS { - ?s rdf:type . - ?s aocat:has_ARIADNE_subject ?ariadneSubject . - } - } - }; - - - PREFIX aocat: - PREFIX skos: - PREFIX ariadneplus: - - INSERT { - GRAPH { - ?record aocat:has_access_rights ?accessRights . - ?record aocat:has_ARIADNE_subject ?archeologicalResourceType . - ?record aocat:has_owner ?owner . - ?record aocat:has_responsible ?legalResponsible . - ?record aocat:has_contributor ?contributor . - } - } - USING - WHERE { - ?record aocat:is_part_of ?collection . - ?collection aocat:has_access_rights ?accessRights . - ?collection aocat:has_ARIADNE_subject ?archeologicalResourceType . - ?collection aocat:has_owner ?owner . - ?collection aocat:has_responsible ?legalResponsible . - ?collection aocat:has_contributor ?contributor . - }; - - PREFIX aocat: - PREFIX skos: - - INSERT { - GRAPH { - ?record aocat:has_derived_subject ?aat . - } - } - USING - USING - WHERE { - { - ?record aocat:has_native_subject ?native_subject . - ?native_subject skos:exactMatch ?aat . - } - union - { - ?record aocat:has_native_subject ?native_subject . - ?native_subject skos:broadMatch ?aat . - } - union - { - ?record aocat:has_native_subject ?native_subject . - ?native_subject skos:closeMatch ?aat . - } - union - { - ?record aocat:has_native_subject ?native_subject . - ?native_subject skos:narrowMatch ?aat . - } - }; \ No newline at end of file