set explicit type to distinguish records and collections: property aocat:has_type can have multiple values

pull/2/head
Alessia Bardi 4 years ago
parent d8133be6d4
commit 031f4d92f5

@ -12,8 +12,8 @@ graphdb.baseURI=https://ariadne-infrastructure.eu/
elasticsearch.hostname=elastic-test.ariadne.d4science.org
elasticsearch.indexname=catalog_test
catalog.entry.path=$[*][?(@['https://www.ariadne-infrastructure.eu/property/resourceType'][0]['value']=='provided record')]
catalog.entry.collection.path=$[*][?(@['https://www.ariadne-infrastructure.eu/property/resourceType'][0]['value']=='Dataset Collection')]
catalog.entry.path=$[*][?(@['https://www.ariadne-infrastructure.eu/property/rdfType'][0]['value']=='Record')]
catalog.entry.collection.path=$[*][?(@['https://www.ariadne-infrastructure.eu/property/rdfType'][0]['value']=='Collection')]
general.classpath=eu.dnetlib.ariadneplus.elasticsearch.model.
type.path=https://www.ariadne-infrastructure.eu/property/resourceType
exclude.predicates=["https://www.ariadne-infrastructure.eu/property/resourceType", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"]

@ -6,7 +6,8 @@ PREFIX onto: <http://www.ontotext.com/>
PREFIX ariadneplus: <https://ariadne-infrastructure.eu/aocat/>
PREFIX time: <http://www.w3.org/2006/time#>
CONSTRUCT {
CONSTRUCT {
%record aoprop:rdfType "Collection" .
%record aoprop:identifier %record .
%record aoprop:originalId ?originalId .
%record aoprop:issued ?issued .

@ -6,64 +6,65 @@ PREFIX onto: <http://www.ontotext.com/>
PREFIX ariadneplus: <https://ariadne-infrastructure.eu/aocat/>
PREFIX time: <http://www.w3.org/2006/time#>
CONSTRUCT {
%record aoprop:identifier %record .
%record aoprop:originalId ?originalId .
%record aoprop:issued ?issued .
%record aoprop:modified ?modified .
%record aoprop:partOf ?partOf .
%record aoprop:creator ?creator .
CONSTRUCT {
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aoprop:rdfType "Record" .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aoprop:identifier <https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aoprop:originalId ?originalId .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aoprop:issued ?issued .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aoprop:modified ?modified .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aoprop:partOf ?partOf .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aoprop:creator ?creator .
?creator aoprop:name ?creatorName .
?creator aoprop:email ?creatorEmail .
%record aoprop:contributor ?contributor .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aoprop:contributor ?contributor .
?contributor aoprop:name ?contributorName .
?contributor aoprop:email ?contributorEmail .
%record aoprop:legalResponsible ?legalResponsible .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aoprop:legalResponsible ?legalResponsible .
?legalResponsible aoprop:name ?legalResponsibleName .
?legalResponsible aoprop:email ?legalResponsibleEmail .
%record aoprop:owner ?owner .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aoprop:owner ?owner .
?owner aoprop:name ?ownerName .
?owner aoprop:email ?ownerEmail .
%record aoprop:publisher ?publisher .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aoprop:publisher ?publisher .
?publisher aoprop:name ?publisherName .
?publisher aoprop:email ?publisherEmail .
%record aoprop:accessPolicy ?accessPolicy .
%record aoprop:accessRights ?accessRights .
%record aoprop:landingPage ?landingPage .
%record aoprop:spatialRegion ?spatialRegion .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aoprop:accessPolicy ?accessPolicy .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aoprop:accessRights ?accessRights .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aoprop:landingPage ?landingPage .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aoprop:spatialRegion ?spatialRegion .
?spatialRegion aoprop:placeName ?spatialPlaceName .
?spatialRegion aoprop:spatialCoordinateSystem ?spatialCoordinateSystem .
%record aoprop:spatialRegionPoint ?spatialRegionPoint .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aoprop:spatialRegionPoint ?spatialRegionPoint .
?spatialRegionPoint aoprop:lat ?spatialLocationLat .
?spatialRegionPoint aoprop:lon ?spatialLocationLon .
%record aoprop:spatialRegionBox ?spatialRegionBox .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aoprop:spatialRegionBox ?spatialRegionBox .
?spatialRegionBox aoprop:boxMaxLat ?spatialLocationBBMaxLat .
?spatialRegionBox aoprop:boxMaxLon ?spatialLocationBBMaxLon .
?spatialRegionBox aoprop:boxMinLat ?spatialLocationBBMinLat .
?spatialRegionBox aoprop:boxMinLon ?spatialLocationBBMinLon .
%record aoprop:uri ?temporal .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aoprop:uri ?temporal .
?temporal aoprop:periodName ?temporalPeriodName .
?temporal aoprop:from ?temporalFrom .
?temporal aoprop:until ?temporalUntil .
?temporal aoprop:uri ?temporal .
%record aoprop:uri ?temporalNative .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aoprop:uri ?temporalNative .
?temporalNative aoprop:periodName ?temporalNativePeriodName .
%record aoprop:archeologicalResourceType ?archeologicalResourceType .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aoprop:archeologicalResourceType ?archeologicalResourceType .
?archeologicalResourceType aoprop:name ?archeologicalResourceTypeName .
%record aoprop:resourceType ?resourceType .
%record aoprop:nativeSubject ?nativeSubject .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aoprop:resourceType ?resourceType .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aoprop:nativeSubject ?nativeSubject .
?nativeSubject aoprop:prefLabel ?nativeSubjectPrefLabel .
?nativeSubject aoprop:rdfAbout ?nativeSubject .
%record aoprop:derivedSubject ?derivedSubject .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aoprop:derivedSubject ?derivedSubject .
?derivedSubject aoprop:prefLabel ?derivedSubjectPrefLabel .
?derivedSubject aoprop:source "Getty AAT" .
%record aoprop:aatSubjects ?derivedSubject .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aoprop:aatSubjects ?derivedSubject .
?derivedSubject aoprop:id ?derivedSubject .
?derivedSubject aoprop:label ?derivedSubjectPrefLabel .
?derivedSubject aoprop:lang ?aatSubjectsLang .
%record aoprop:title ?title .
%record aoprop:description ?description .
%record aoprop:language ?language .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aoprop:title ?title .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aoprop:description ?description .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aoprop:language ?language .
}
from <https://ariadne-infrastructure.eu/api_________::ariadne_plus::%datasource::aat>
from <https://ariadne-infrastructure.eu/ariadneplus::%datasource::aatplus>
@ -71,37 +72,37 @@ from <https://ariadne-infrastructure.eu/ariadneplus::%datasource::periodo>
from <https://ariadne-infrastructure.eu/ariadneplus::%datasource::periodoplus>
from <https://ariadne-infrastructure.eu/api_________::ariadne_plus::%datasource::%collectionId>
where {
%record aocat:has_language / skos:prefLabel ?language .
%record aocat:has_original_id ?originalId .
%record aocat:is_part_of ?partOf .
%record aocat:has_creator ?creator .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aocat:has_language / skos:prefLabel ?language .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aocat:has_original_id ?originalId .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aocat:is_part_of ?partOf .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aocat:has_creator ?creator .
?creator aocat:has_name ?creatorName .
%record aocat:has_title ?title .
%record aocat:has_type / skos:prefLabel ?resourceType .
%record aocat:has_native_subject ?nativeSubject .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aocat:has_title ?title .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aocat:has_type / skos:prefLabel ?resourceType .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aocat:has_native_subject ?nativeSubject .
?nativeSubject skos:prefLabel ?nativeSubjectPrefLabel .
optional {
%record aocat:has_derived_subject ?derivedSubject .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aocat:has_derived_subject ?derivedSubject .
?derivedSubject skos:prefLabel ?derivedSubjectPrefLabel .
}
optional {
?creator aocat:has_email ?creatorEmail .
}
optional {
%record aocat:has_description ?description .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aocat:has_description ?description .
}
optional {
%record aocat:has_access_policy / rdfs:label ?accessPolicy .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aocat:has_access_policy / rdfs:label ?accessPolicy .
}
optional {
%record aocat:has_landing_page / rdfs:label ?landingPage .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aocat:has_landing_page / rdfs:label ?landingPage .
}
optional {
%record aocat:has_temporal_coverage ?temporalNative .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aocat:has_temporal_coverage ?temporalNative .
?temporalNative aocat:has_native_period / skos:prefLabel ?temporalNativePeriodName .
}
optional {
%record aocat:has_temporal_coverage ?temporal .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aocat:has_temporal_coverage ?temporal .
?temporal aocat:has_period / skos:prefLabel ?temporalPeriodName .
optional {
?temporal aocat:from ?temporalFrom .
@ -112,18 +113,18 @@ where {
{
select *
where {
%record aocat:was_issued ?issued .
%record aocat:was_modified ?modified .
%record aocat:has_contributor ?contributor .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aocat:was_issued ?issued .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aocat:was_modified ?modified .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aocat:has_contributor ?contributor .
?contributor aocat:has_name ?contributorName .
%record aocat:has_responsible ?legalResponsible .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aocat:has_responsible ?legalResponsible .
?legalResponsible aocat:has_name ?legalResponsibleName .
%record aocat:has_owner ?owner .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aocat:has_owner ?owner .
?owner aocat:has_name ?ownerName .
%record aocat:has_publisher ?publisher .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aocat:has_publisher ?publisher .
?publisher aocat:has_name ?publisherName .
%record aocat:has_access_rights ?accessRights .
%record aocat:has_ARIADNE_subject ?archeologicalResourceType .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aocat:has_access_rights ?accessRights .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aocat:has_ARIADNE_subject ?archeologicalResourceType .
?archeologicalResourceType skos:prefLabel ?archeologicalResourceTypeName .
optional {
?contributor aocat:has_email ?contributorEmail .
@ -143,18 +144,18 @@ where {
{
select *
where {
%record aocat:has_spatial_coverage ?spatialRegion .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aocat:has_spatial_coverage ?spatialRegion .
?spatialRegion aocat:has_place_name ?spatialPlaceName .
optional {
?spatialRegion aocat:has_coordinate_system ?spatialCoordinateSystem .
}
optional {
%record aocat:has_spatial_coverage ?spatialRegionPoint .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aocat:has_spatial_coverage ?spatialRegionPoint .
?spatialRegionPoint aocat:has_latitude ?spatialLocationLat ;
aocat:has_longitude ?spatialLocationLon .
}
optional {
%record aocat:has_spatial_coverage ?spatialRegionBox .
<https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C> aocat:has_spatial_coverage ?spatialRegionBox .
?spatialRegionBox aocat:has_bounding_box_max_lat ?spatialLocationBBMaxLat ;
aocat:has_bounding_box_max_lon ?spatialLocationBBMaxLon ;
aocat:has_bounding_box_min_lat ?spatialLocationBBMinLat ;

@ -22,8 +22,8 @@ public class ParseRDFJsonTest {
@Before
public void setup(){
parser = new ParseRDFJSON();
parser.setCatalogEntryCollectionJsonPath("$[*][?(@['https://www.ariadne-infrastructure.eu/property/resourceType'][0]['value']=='Dataset Collection')]");
parser.setCatalogEntryJsonPath("$[*][?(@['https://www.ariadne-infrastructure.eu/property/resourceType'][0]['value']=='provided record')]");
parser.setCatalogEntryCollectionJsonPath("$[*][?(@['https://www.ariadne-infrastructure.eu/property/rdfType'][0]['value']=='Collection')]");
parser.setCatalogEntryJsonPath("$[*][?(@['https://www.ariadne-infrastructure.eu/property/rdfType'][0]['value']=='Record')]");
mng = new ResourceManager();
mng.setup("https://www.ariadne-infrastructure.eu/property/resourceType", "eu.dnetlib.ariadneplus.elasticsearch.model.",
"[\"https://www.ariadne-infrastructure.eu/property/resourceType\", \"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\"]",
@ -41,6 +41,17 @@ public class ParseRDFJsonTest {
}
}
@Test
public void testParseRecord() throws ParseException {
String recordJson = getFromClasspath("eu/dnetlib/ariadneplus/reader/json/test_cenieh.json");
parser.setCollection(false);
int res = parser.parse(recordJson);
Assert.assertNotEquals(-1, res);
while(parser.hasNextElement()){
System.out.println(parser.getNextElement());
}
}
@Test
public void testParseEmptyJson() throws ParseException {
String collectionJson = "{}";

@ -0,0 +1,536 @@
{
"http://vocab.getty.edu/aat/300019261" : {
"https://www.ariadne-infrastructure.eu/property/id" : [
{
"value" : "http://vocab.getty.edu/aat/300019261",
"type" : "uri"
}
],
"https://www.ariadne-infrastructure.eu/property/label" : [
{
"value" : "Middle Paleolithic",
"type" : "literal",
"lang" : "en"
}
],
"https://www.ariadne-infrastructure.eu/property/lang" : [
{
"value" : "en",
"type" : "literal",
"datatype" : "http://www.w3.org/2001/XMLSchema#string"
}
],
"https://www.ariadne-infrastructure.eu/property/prefLabel" : [
{
"value" : "Middle Paleolithic",
"type" : "literal",
"lang" : "en"
}
],
"https://www.ariadne-infrastructure.eu/property/source" : [
{
"value" : "Getty AAT",
"type" : "literal",
"datatype" : "http://www.w3.org/2001/XMLSchema#string"
}
]
},
"http://vocab.getty.edu/aat/300054328" : {
"https://www.ariadne-infrastructure.eu/property/id" : [
{
"value" : "http://vocab.getty.edu/aat/300054328",
"type" : "uri"
}
],
"https://www.ariadne-infrastructure.eu/property/label" : [
{
"value" : "archaeology",
"type" : "literal",
"lang" : "en"
}
],
"https://www.ariadne-infrastructure.eu/property/lang" : [
{
"value" : "en",
"type" : "literal",
"datatype" : "http://www.w3.org/2001/XMLSchema#string"
}
],
"https://www.ariadne-infrastructure.eu/property/prefLabel" : [
{
"value" : "archaeology",
"type" : "literal",
"lang" : "en"
}
],
"https://www.ariadne-infrastructure.eu/property/source" : [
{
"value" : "Getty AAT",
"type" : "literal",
"datatype" : "http://www.w3.org/2001/XMLSchema#string"
}
]
},
"http://vocab.getty.edu/aat/300220387" : {
"https://www.ariadne-infrastructure.eu/property/id" : [
{
"value" : "http://vocab.getty.edu/aat/300220387",
"type" : "uri"
}
],
"https://www.ariadne-infrastructure.eu/property/label" : [
{
"value" : "electron spin resonance",
"type" : "literal",
"lang" : "en"
}
],
"https://www.ariadne-infrastructure.eu/property/lang" : [
{
"value" : "en",
"type" : "literal",
"datatype" : "http://www.w3.org/2001/XMLSchema#string"
}
],
"https://www.ariadne-infrastructure.eu/property/prefLabel" : [
{
"value" : "electron spin resonance",
"type" : "literal",
"lang" : "en"
}
],
"https://www.ariadne-infrastructure.eu/property/source" : [
{
"value" : "Getty AAT",
"type" : "literal",
"datatype" : "http://www.w3.org/2001/XMLSchema#string"
}
]
},
"https://ariadne-infrastructure.eu/aocat/Agent/Arnold%2C%20Lee%20J." : {
"https://www.ariadne-infrastructure.eu/property/name" : [
{
"value" : "Arnold, Lee J.",
"type" : "literal",
"lang" : "en"
}
]
},
"https://ariadne-infrastructure.eu/aocat/Agent/Cenieh%20Institutional%20Repository" : {
"https://www.ariadne-infrastructure.eu/property/name" : [
{
"value" : "Cenieh Institutional Repository",
"type" : "literal",
"lang" : "en"
}
]
},
"https://ariadne-infrastructure.eu/aocat/Agent/Centro%20Nacional%20de%20Investigaci%C3%B3n%20sobre%20la%20Evoluci%C3%B3n%20Humana" : {
"https://www.ariadne-infrastructure.eu/property/name" : [
{
"value" : "Centro Nacional de Investigación sobre la Evolución Humana",
"type" : "literal",
"datatype" : "http://www.w3.org/2001/XMLSchema#string"
}
]
},
"https://ariadne-infrastructure.eu/aocat/Agent/Demuro%2C%20Martina" : {
"https://www.ariadne-infrastructure.eu/property/name" : [
{
"value" : "Demuro, Martina",
"type" : "literal",
"lang" : "en"
}
]
},
"https://ariadne-infrastructure.eu/aocat/Agent/Duval%2C%20Mathieu" : {
"https://www.ariadne-infrastructure.eu/property/name" : [
{
"value" : "Duval, Mathieu",
"type" : "literal",
"lang" : "en"
}
]
},
"https://ariadne-infrastructure.eu/aocat/Agent/Elsevier" : {
"https://www.ariadne-infrastructure.eu/property/name" : [
{
"value" : "Elsevier",
"type" : "literal",
"lang" : "en"
}
]
},
"https://ariadne-infrastructure.eu/aocat/Agent/Guilarte%2C%20Ver%C3%B3nica" : {
"https://www.ariadne-infrastructure.eu/property/name" : [
{
"value" : "Guilarte, Verónica",
"type" : "literal",
"lang" : "en"
}
]
},
"https://ariadne-infrastructure.eu/aocat/Agent/NOTPROVIDED" : {
"https://www.ariadne-infrastructure.eu/property/name" : [
{
"value" : "Not provided",
"type" : "literal",
"datatype" : "http://www.w3.org/2001/XMLSchema#string"
}
]
},
"https://ariadne-infrastructure.eu/aocat/Agent/P%C3%A9rez-Gonz%C3%A1lez%2C%20Alfredo" : {
"https://www.ariadne-infrastructure.eu/property/name" : [
{
"value" : "Pérez-González, Alfredo",
"type" : "literal",
"lang" : "en"
}
]
},
"https://ariadne-infrastructure.eu/aocat/Agent/Santonja%2C%20Manuel" : {
"https://www.ariadne-infrastructure.eu/property/name" : [
{
"value" : "Santonja, Manuel",
"type" : "literal",
"lang" : "en"
}
]
},
"https://ariadne-infrastructure.eu/aocat/Concept/AO_Subject/NOTPROVIDED" : {
"https://www.ariadne-infrastructure.eu/property/name" : [
{
"value" : "Not provided",
"type" : "literal",
"datatype" : "http://www.w3.org/2001/XMLSchema#string"
}
]
},
"https://ariadne-infrastructure.eu/aocat/Concept/CENIEH/ARCHEOLOGY" : {
"https://www.ariadne-infrastructure.eu/property/prefLabel" : [
{
"value" : "Archeology",
"type" : "literal",
"lang" : "en"
}
],
"https://www.ariadne-infrastructure.eu/property/rdfAbout" : [
{
"value" : "https://ariadne-infrastructure.eu/aocat/Concept/CENIEH/ARCHEOLOGY",
"type" : "uri"
}
]
},
"https://ariadne-infrastructure.eu/aocat/Concept/CENIEH/CUESTA%20DE%20LA%20BAJADA" : {
"https://www.ariadne-infrastructure.eu/property/prefLabel" : [
{
"value" : "Cuesta de la Bajada",
"type" : "literal",
"lang" : "en"
}
],
"https://www.ariadne-infrastructure.eu/property/rdfAbout" : [
{
"value" : "https://ariadne-infrastructure.eu/aocat/Concept/CENIEH/CUESTA%20DE%20LA%20BAJADA",
"type" : "uri"
}
]
},
"https://ariadne-infrastructure.eu/aocat/Concept/CENIEH/ESR" : {
"https://www.ariadne-infrastructure.eu/property/prefLabel" : [
{
"value" : "ESR",
"type" : "literal",
"lang" : "en"
}
],
"https://www.ariadne-infrastructure.eu/property/rdfAbout" : [
{
"value" : "https://ariadne-infrastructure.eu/aocat/Concept/CENIEH/ESR",
"type" : "uri"
}
]
},
"https://ariadne-infrastructure.eu/aocat/Concept/CENIEH/MIDDLE%20PALAEOLITHIC" : {
"https://www.ariadne-infrastructure.eu/property/prefLabel" : [
{
"value" : "Middle Palaeolithic",
"type" : "literal",
"lang" : "en"
}
],
"https://www.ariadne-infrastructure.eu/property/rdfAbout" : [
{
"value" : "https://ariadne-infrastructure.eu/aocat/Concept/CENIEH/MIDDLE%20PALAEOLITHIC",
"type" : "uri"
}
]
},
"https://ariadne-infrastructure.eu/aocat/Concept/CENIEH/OPTICALLY%20BLEACHED%20QUARTZ%20GRAINS" : {
"https://www.ariadne-infrastructure.eu/property/prefLabel" : [
{
"value" : "Optically bleached quartz grains",
"type" : "literal",
"lang" : "en"
}
],
"https://www.ariadne-infrastructure.eu/property/rdfAbout" : [
{
"value" : "https://ariadne-infrastructure.eu/aocat/Concept/CENIEH/OPTICALLY%20BLEACHED%20QUARTZ%20GRAINS",
"type" : "uri"
}
]
},
"https://ariadne-infrastructure.eu/aocat/Place/1AF6DB94-0D86-37A1-9895-944E5EC05830" : {
"https://www.ariadne-infrastructure.eu/property/placeName" : [
{
"value" : "Cuesta de la Bajada, Teruel, Spain",
"type" : "literal",
"lang" : "en"
}
]
},
"https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C" : {
"https://www.ariadne-infrastructure.eu/property/aatSubjects" : [
{
"value" : "http://vocab.getty.edu/aat/300019261",
"type" : "uri"
},
{
"value" : "http://vocab.getty.edu/aat/300054328",
"type" : "uri"
},
{
"value" : "http://vocab.getty.edu/aat/300220387",
"type" : "uri"
}
],
"https://www.ariadne-infrastructure.eu/property/accessPolicy" : [
{
"value" : "Atribución-NoComercial-SinDerivadas 3.0 Estados Unidos de América",
"type" : "literal",
"datatype" : "http://www.w3.org/2001/XMLSchema#string"
},
{
"value" : "http://creativecommons.org/licenses/by-nc-nd/3.0/us/",
"type" : "literal",
"datatype" : "http://www.w3.org/2001/XMLSchema#string"
}
],
"https://www.ariadne-infrastructure.eu/property/accessRights" : [
{
"value" : "https://cir.cenieh.es/derechos-autor",
"type" : "literal",
"datatype" : "http://www.w3.org/2001/XMLSchema#string"
}
],
"https://www.ariadne-infrastructure.eu/property/archeologicalResourceType" : [
{
"value" : "https://ariadne-infrastructure.eu/aocat/Concept/AO_Subject/NOTPROVIDED",
"type" : "uri"
}
],
"https://www.ariadne-infrastructure.eu/property/contributor" : [
{
"value" : "https://ariadne-infrastructure.eu/aocat/Agent/Centro%20Nacional%20de%20Investigaci%C3%B3n%20sobre%20la%20Evoluci%C3%B3n%20Humana",
"type" : "uri"
}
],
"https://www.ariadne-infrastructure.eu/property/creator" : [
{
"value" : "https://ariadne-infrastructure.eu/aocat/Agent/Arnold%2C%20Lee%20J.",
"type" : "uri"
},
{
"value" : "https://ariadne-infrastructure.eu/aocat/Agent/Demuro%2C%20Martina",
"type" : "uri"
},
{
"value" : "https://ariadne-infrastructure.eu/aocat/Agent/Duval%2C%20Mathieu",
"type" : "uri"
},
{
"value" : "https://ariadne-infrastructure.eu/aocat/Agent/Guilarte%2C%20Ver%C3%B3nica",
"type" : "uri"
},
{
"value" : "https://ariadne-infrastructure.eu/aocat/Agent/P%C3%A9rez-Gonz%C3%A1lez%2C%20Alfredo",
"type" : "uri"
},
{
"value" : "https://ariadne-infrastructure.eu/aocat/Agent/Santonja%2C%20Manuel",
"type" : "uri"
}
],
"https://www.ariadne-infrastructure.eu/property/derivedSubject" : [
{
"value" : "http://vocab.getty.edu/aat/300019261",
"type" : "uri"
},
{
"value" : "http://vocab.getty.edu/aat/300054328",
"type" : "uri"
},
{
"value" : "http://vocab.getty.edu/aat/300220387",
"type" : "uri"
}
],
"https://www.ariadne-infrastructure.eu/property/description" : [
{
"value" : "Electron spin resonance (ESR) dating of optically bleached quartz grains was performed on three sediment samples collected from the Middle Palaeolithic site of Cuesta de la Bajada (Spain). A standard multiple grain and multiple aliquot additive dose procedure was employed, and both the Al and Ti centres were measured as part of the multiple centres approach.\n\nESR age estimates obtained for the three samples indicate that the Al centre provides a maximum possible chronology, as the Ti centres show that the Al signal was likely not systematically reset to its residual level during sediment transport. A direct comparison between ESR ages based on the Ti centres and single grain optically stimulated luminescence (OSL) ages from samples collected nearby shows broadly consistent results. The Ti-H centre also appears to provide suitable chronologies for at least two of the three Middle Pleistocene samples studied here. Surprisingly, the only sample showing consistent ESR ages between the Al and Ti centres appears to be overestimated in comparison with the Ti-centre and OSL ages derived from the other two samples. This indicates either incomplete bleaching of both the Al and Ti centres for this sample, or unexpected impacts of other sources of De uncertainty, such as multi-grain averaging effects. The ESR dating results overall indicate that the archaeological sequence of Cuesta de la Bajada CB-3 is most likely correlated to either MIS 7 or 9.",
"type" : "literal",
"lang" : "en"
},
{
"value" : "Some of the data shown in the present study were derived from analysis covered by the project CGL2010-16821 from the Spanish Ministry of Science and Innovation. M. Duval's research was funded by a Marie Curie International Outgoing Fellowship of the EU's Seventh Framework Programme (FP7/20072013), awarded under REA Grant Agreement No. PIOF-GA-2013-626474. L. Arnold and M. Demuro were partly supported by Australian Research Council (ARC) Future Fellowship grant FT130100195 and Discovery Early Career Researcher AwardDE160100743, respectively, during the course of this study. M. Duval is currently the recipient of an ARC Future Fellowship (FT150100215).",
"type" : "literal",
"lang" : "en"
}
],
"https://www.ariadne-infrastructure.eu/property/identifier" : [
{
"value" : "https://ariadne-infrastructure.eu/aocat/Resource/3037F979-F94F-380B-A6A6-3972ED10E61C",
"type" : "uri"
}
],
"https://www.ariadne-infrastructure.eu/property/issued" : [
{
"value" : "2017-02",
"type" : "literal",
"lang" : "en"
},
{
"value" : "2017-11-23T16:44:21Z",
"type" : "literal",
"lang" : "en"
},
{
"value" : "2019-02-01",
"type" : "literal",
"lang" : "en"
}
],
"https://www.ariadne-infrastructure.eu/property/landingPage" : [
{
"value" : "http://cir.cenieh.es/handle/20.500.12136/81",
"type" : "literal",
"datatype" : "http://www.w3.org/2001/XMLSchema#string"
},
{
"value" : "https://doi.org/10.1016/j.quageo.2016.09.006",
"type" : "literal",
"datatype" : "http://www.w3.org/2001/XMLSchema#string"
}
],
"https://www.ariadne-infrastructure.eu/property/language" : [
{
"value" : "en",
"type" : "literal",
"datatype" : "http://www.w3.org/2001/XMLSchema#string"
}
],
"https://www.ariadne-infrastructure.eu/property/legalResponsible" : [
{
"value" : "https://ariadne-infrastructure.eu/aocat/Agent/NOTPROVIDED",
"type" : "uri"
}
],
"https://www.ariadne-infrastructure.eu/property/modified" : [
{
"value" : "2017-02",
"type" : "literal",
"lang" : "en"
},
{
"value" : "2017-11-23T16:44:21Z",
"type" : "literal",
"lang" : "en"
},
{
"value" : "2019-02-01",
"type" : "literal",
"lang" : "en"
}
],
"https://www.ariadne-infrastructure.eu/property/nativeSubject" : [
{
"value" : "https://ariadne-infrastructure.eu/aocat/Concept/CENIEH/ARCHEOLOGY",
"type" : "uri"
},
{
"value" : "https://ariadne-infrastructure.eu/aocat/Concept/CENIEH/CUESTA%20DE%20LA%20BAJADA",
"type" : "uri"
},
{
"value" : "https://ariadne-infrastructure.eu/aocat/Concept/CENIEH/ESR",
"type" : "uri"
},
{
"value" : "https://ariadne-infrastructure.eu/aocat/Concept/CENIEH/MIDDLE%20PALAEOLITHIC",
"type" : "uri"
},
{
"value" : "https://ariadne-infrastructure.eu/aocat/Concept/CENIEH/OPTICALLY%20BLEACHED%20QUARTZ%20GRAINS",
"type" : "uri"
}
],
"https://www.ariadne-infrastructure.eu/property/originalId" : [
{
"value" : "20.500.12136/81",
"type" : "literal",
"datatype" : "http://www.w3.org/2001/XMLSchema#string"
}
],
"https://www.ariadne-infrastructure.eu/property/owner" : [
{
"value" : "https://ariadne-infrastructure.eu/aocat/Agent/Cenieh%20Institutional%20Repository",
"type" : "uri"
}
],
"https://www.ariadne-infrastructure.eu/property/partOf" : [
{
"value" : "https://ariadne-infrastructure.eu/aocat/Collection/CENIEH/A4A042CF-4FD6-3FB4-B701-CBC8A1653ADA",
"type" : "uri"
}
],
"https://www.ariadne-infrastructure.eu/property/publisher" : [
{
"value" : "https://ariadne-infrastructure.eu/aocat/Agent/Elsevier",
"type" : "uri"
}
],
"https://www.ariadne-infrastructure.eu/property/rdfType" : [
{
"value" : "Record",
"type" : "literal",
"datatype" : "http://www.w3.org/2001/XMLSchema#string"
}
],
"https://www.ariadne-infrastructure.eu/property/resourceType" : [
{
"value" : "Article",
"type" : "literal",
"lang" : "en"
},
{
"value" : "provided record",
"type" : "literal",
"datatype" : "http://www.w3.org/2001/XMLSchema#string"
}
],
"https://www.ariadne-infrastructure.eu/property/spatialRegion" : [
{
"value" : "https://ariadne-infrastructure.eu/aocat/Place/1AF6DB94-0D86-37A1-9895-944E5EC05830",
"type" : "uri"
}
],
"https://www.ariadne-infrastructure.eu/property/title" : [
{
"value" : "Electron spin resonance dating of optically bleached quartz grains from the Middle Palaeolithic site of Cuesta de la Bajada (Spain) using the multiple centres approach",
"type" : "literal",
"lang" : "en"
}
]
}
}
Loading…
Cancel
Save