SlideShare a Scribd company logo
1
Translation of Relational and
Non-Relational Databases
into RDF with xR2RML
F. Michel, L. Djimenou, C. Faron-Zucker, J. Montagnat
I3S lab, CNRS, Univ. Nice Sophia
2
 Web of data  publication/interlinking of open datasets
• Goal: publish heterogeneous data in a common format (RDF)
 Driven by data integration initiatives, e.g.:
• Linking Open Data, 1015 ds.
• W3C Data Activity
• BIO2RDF, 35 ds.
• Neuroscience Information
Framework
(12598 registry entries)
Web-scale data integration
Linked Datasets as of Aug. 30th 2014.
(c) R. Cyganiak & and A. Jentzsch
(Data: Apr. 2015)
3
Web-scale data integration
 Need to access data from the Deep Web [1]
• Strd./unstrd. data
hardly indexed by search engines,
hardly linked with other data sources
 Exponential data growth goes on
• Various types of DBs:
RDB, NoSQL, NewSQL, Native XML,
LDAP directory, OODB...
• Heterogeneous data models and
query capabilities
[1] B. He, M. Patel, Z. Zhang, and K. C.-C. Chang. Accessing the deep web. Communications of the ACM, 50(5):94–101, 2007
4
Web-scale data integration
To enrich the web of data with
existing and new data being created
ever faster...
... we need standardized approaches
to enable the translation of
heterogeneous data sources to RDF
5
 Previous works
 Background: R2RML and RML
 Description of xR2RML
 Evaluation and perspectives
Agenda
6
 Previous works
 Background: R2RML and RML
 Description of xR2RML
 Evaluation and perspectives
Agenda
7
 Much work achieved on RDBs
D2RQ, Virtuoso, R2RML (W3C)…
Goals: generic RDB-to-RDF, OBDA, ontology learning, schema mapping…
Methods: direct mapping vs. domain-specific,
materialization vs. SQL-to-SPARQL query rewriting
 XML: using either XPath (RML), XQuery (XSPARQL,
SPARQL2XQuery) or XSLT (Scissor-Lift), XSD-to-OWL
(SPARQL2XQuery)
 CSV/TSV/Spreadsheets: CSV on the web (W3C WG)
 JSON: using JSONPath (RML)
 Integration frameworks: DataLift, RML, Asio Tool Suite…
Previous works
8
 Existing approaches to map specific types of databases or
map specific data formats to RDF
 Each comes with its own mapping language or UI
 Supporting a new system (data model and QL) not
straightforward
Previous works
No unified mapping language to equally apply to most common
databases (RDB, NoSQL, XML, LDAP, OO…)
Supporting a new data model and/or QL  develop a DB
connector but no change in the mapping language
9
 Previous works
 Background: R2RML and RML
 Description of xR2RML
 Evaluation and perspectives
Agenda
10
R2RML – RDB To RDF Mapping Language
 W3C recommendation, 2012
 Goals:
• Describe mappings of relational entities to RDF
• Reuse of existing ontologies
• Operationalization not addressed
 How: TriplesMaps (TM) define how to generate RDF triples
• 1 logical table  rows to process
• 1 subject map  subject IRIs
• N (predicate map-object map) couples
• 1 opt. graph map  graph IRIs
 An R2RML mapping is an RDF graph
Triples
11
R2RML – RDB To RDF Mapping Language
Id Acronym Centre_Id
10 CAC2010 4
Id Name address
4 Pasteur ...
Study
Centre
FK
R2RML mapping graph:
Produced RDF:
<#Centre> a rr:TriplesMap;
rr:logicalTable [ rr:tableName "Centre" ];
rr:subjectMap [ rr:class ex:Centre;
rr:template "http://example.org/centre#{Name}"; ].
<#Study> a rr:TriplesMap;
rr:logicalTable [ rr:tableName “Study" ];
rr:subjectMap [ rr:class ex:Study;
rr:template "http://example.org/study#{Id}"; ];
rr:predicateObjectMap [
rr:predicate ex:hasName;
rr:objectMap [ rr:column "Acronym" ]; ];
rr:predicateObjectMap [
rr:predicate ex:locatedIn;
rr:objectMap [
rr:parentTriplesMap <#Centre>;
rr:joinCondition [
rr:child "Centre_id";
rr:parent "Id";
]; ]; ].
<http://example.org/centre#Pasteur> a ex:Centre.
<http://example.org/study#10> a ex:Study;
ex:hasName "CAC2010";
ex:locatedIn <http://example.org/centre#Pasteur>.
12
<#Centre>
rml:logicalSource [
rml:source “http://example.org/Centres.xml";
rml:referenceFormulation ql:XPath;
rml:iterator “/centres/centre”:
];
rr:subjectMap [
rr:class ex:Centre;
rr:template
"http://example.org/centre#{//centre/@Id}";
];
rr:predicateObjectMap [
rr:predicate ex:hasName;
rr:objectMap [
rml:reference "//centre/name" ];
];
RML extensions to R2RML
<centres>
<centre @Id="4">
<name>Pasteur</name>
</centre>
<centre @Id="6">
<name>Pontchaillou</name>
</centre>
</centres>
Advantages:
• Extends to CSV, JSON, XML sources
• Map several sources simultaneously
Limitations:
• Fixed list of reference formulations
• No distinction between reference
formulation and query language
• No RDF collections
RML mapping graph:XML document:
13
 Previous works
 Background: R2RML and RML
 Description of xR2RML
 Evaluation and perspectives
Agenda
14
xR2RML - Overall picture
xR2RML
Translation
Engine
xR2RML
Mapping
description
Native QL
Source database
Flexible language to describe mappings from
most common types of DB to RDF.
Extends R2RML and leverages RML extensions.
Domain
ontologies
refers to
Domain
ontologies
uses
15
xR2RML: Logical source
<#Centre>
xrr:logicalSource [
xrr:query ’’’for $x in doc(“centres.xml”)/centres/centre
where ... return $x’’’;
];
rr: R2RML vocabulary
xrr: xR2RML vocabulary
<centres>
<centre @Id="4">
<name>Pasteur</name>
</centre>
<centre @Id="6">
<name>Pontchaillou</name>
</centre>
</centres>
XML database
supporting XQuey:
xR2RML mapping graph:
16
xR2RML: Data element references
<#Centre>
xrr:logicalSource [
xrr:query ’’’for $x in doc(“centres.xml”)/centres/centre
where ... return $x’’’;
];
rr:subjectMap [
rr:class ex:Centre;
rr:template
"http://example.org/centre#{//centre/@Id}";
];
rr:predicateObjectMap [
rr:predicate ex:hasName;
rr:objectMap [
xrr:reference "//centre/name" ];
];
rr: R2RML vocabulary
xrr: xR2RML vocabulary
<centres>
<centre @Id="4">
<name>Pasteur</name>
</centre>
<centre @Id="6">
<name>Pontchaillou</name>
</centre>
</centres>
XML database
supporting XQuey:
xR2RML mapping graph:
17
xR2RML: Data element references
<centres>
<centre @Id="4">
<name>Pasteur</name>
</centre>
<centre @Id="6">
<name>Pontchaillou</name>
</centre>
</centres>
XML database
supporting XQuey:
xR2RML mapping graph:
rr: R2RML vocabulary
xrr: xR2RML vocabulary
<#Centre>
xrr:logicalSource [
xrr:query ’’’for $x in doc(“centres.xml”)/centres/centre
where ... return $x’’’;
];
rr:subjectMap [
rr:class ex:Centre;
rr:template
"http://example.org/centre#{//centre/@Id}";
];
rr:predicateObjectMap [
rr:predicate ex:hasName;
rr:objectMap [
xrr:reference “//centre/name" ];
];
xR2RML engine usage guidelines
Types of DB xrr:query
xrr:reference
rr:template
RDB, Column
stores
SQL, CQL, HQL Column name
Native XML DB XQuery XPath
NoSQL doc. Store Proprietary JS-based JSONPath
SPARQL endpoint SPARQL
Variable name,
Column name (s, p, o)
Neo4J (graph db) Cypher Column name (s, p, o)
LDAP directory LDAP Query Attribute name
... ... ...
18
{ "studyid": 10,
"acronym": "CAC2010",
"centres": [
{ "centreid": 4, "name": "Pasteur" },
{ "centreid": 6, "name": "Pontchaillou" }
]
}
xR2RML: multiple values vs. RDF list/container
Mapping case: link the study
with the centres it involves
<http://example.org/study#10> ex:involves “Pasteur”.
<http://example.org/study#10> ex:involves “Pontchaillou”.
<http://example.org/study#10>
ex:involvesCenters ( “Pasteur” “Pontchaillou” )
19
{ "studyid": 10,
"acronym": "CAC2010",
"centres": [
{ "centreid": 4, "name": "Pasteur" },
{ "centreid": 6, "name": "Pontchaillou" }
]
}
xR2RML: multiple values vs. RDF list/container
Mapping case: link the study
with the centres it involves
rr:objectMap [
xrr:reference "$.centres.*.name“;
rr:termType xrr:RdfList;
];
R2RML
term types
rr:IRI,
rr:Literal,
rr:BlankNode
xR2RML
term types
xrr:RdfList,
xrr:RdfSeq,
xrr:RdfBag,
xrr:RdfAlt
20
xR2RML: nested collections
From structured values (XML, JSON...):
nested collections and key-value associations...
... to RDF:
 generate nested lists/containers,
qualify members (data type,
language tag...)
rr:objectMap [
xrr:reference “...";
rr:termType xrr:RdfList;
xrr:nestedTermMap [
xrr:reference “...";
rr:termType xrr:RdfList;
xrr:nestedTermMap [
rr:datatype xsd:string;
]; ]; ];
(
( “John”^^xsd:string “Bob”^^xsd:string )
( “Ted”^^xsd:string “Mark”^^xsd:string )
)
E.g.: produce a list of lists of strings
21
Collection “studies”:
{ “studyid”: 10,
“acronym”: “CAC2010”,
“centres”: [ 4, 6 ]
}
Collection “centres”:
{ “centreid”: 4,
“name”: “Pasteur” },
{ “centreid”: 6,
“name”: “Pontchaillou”}
xR2RML: cross-references
<#Centre>
xrr:logicalSource [ ... ]; rr:subjectMap [ ... ].
<#Study>
xrr:logicalSource [ .. ]; rr:subjectMap [ ... ];
rr:predicateObjectMap [
rr:predicate ex:involvesSeq;
rr:objectMap [
rr:parentTriplesMap <#Centre>;
rr:joinCondition [
rr:child "$.centres.*";
rr:parent "$.centreid";
];
rr:termType xrr:RdfSeq;
];
].
<http://example.org/study#10> ex:involvesSeq
[ a rdf:Seq;
rdf:_1 <http://example.org/centre#Pasteur>;
rdf:_2 <http://example.org/centre#Pontchaillou>; ].
xR2RML mapping graph:MongoDB database:
Produced RDF:
22
Collection “studies”:
{ “studyid”: 10,
“acronym”: “CAC2010”,
“centres”: [ 4, 6 ]
}
Collection “centres”:
{ “centreid”: 4,
“name”: “Pasteur” },
{ “centreid”: 6,
“name”: “Pontchaillou”}
xR2RML: cross-references
<#Centre>
xrr:logicalSource [ ... ]; rr:subjectMap [ ... ].
<#Study>
xrr:logicalSource [ .. ]; rr:subjectMap [ ... ];
rr:predicateObjectMap [
rr:predicate ex:involvesSeq;
rr:objectMap [
rr:parentTriplesMap <#Centre>;
rr:joinCondition [
rr:child "$.centres.*";
rr:parent "$.centreid";
];
rr:termType xrr:RdfSeq;
];
].
xR2RML mapping graph:MongoDB database:
Joint query pushed to the DB
if supported, performed by
the xR2RML engine otherwise
<http://example.org/study#10> ex:involvesSeq
[ a rdf:Seq;
rdf:_1 <http://example.org/centre#Pasteur>;
rdf:_2 <http://example.org/centre#Pontchaillou>; ].
Produced RDF:
23
<#Centre>
xrr:logicalSource [
xrr:sourceName "STAFF";
];
...
rr:predicateObjectMap [
rr:predicate ex:fist-name;
rr:objectMap [
xrr:reference
"Column(Name)/JSONPath($.FirstName)" ];
];
xR2RML: content with mixed formats
Data with mixed content
Relational table “STAFF”, column “Name”
contains JSON data:
... Name ...
... {
“FirstName”: “Bob”,
“LastName: “Smith”
}
...
xR2RML mapping graph:
24
<#Centre>
xrr:logicalSource [
xrr:sourceName "STAFF";
];
...
rr:predicateObjectMap [
rr:predicate ex:fist-name;
rr:objectMap [
xrr:reference
"Column(Name)/JSONPath($.FirstName)" ];
];
xR2RML: content with mixed formats
Data with mixed content
Relational table “STAFF”, column “Name”
contains JSON data:
... Name ...
... {
“FirstName”: “Bob”,
“LastName: “Smith”
}
...
Data
format
Syntax path constructor
Row Column(), CSV(), TSV()
XML XPath()
JSON JSONPath()
... ...
xR2RML mapping graph:
25
 Previous works
 Background: R2RML and RML
 Description of xR2RML main features
 Evaluation and perspectives
Agenda
26
 Use case: study the history and transmission of
zoological knowledge
along historical periods
 TAXREF taxonomical reference
• Designed to support studies in Conservation Biology, enriched
with bioarchaeological taxa
• Maintained the French National Museum of Natural History
• ~ 450.000 terms, CSV/JSON/XML
Use case in Digital Humanities
27
 Ongoing work [2]: Construction of a SKOS1 thesaurus based
on TAXREF
• Import of TAXREF/JSON into MongoDB
• Use of the Morph-xR2RML prototype implementation of
xR2RML, to convert the MongoDB data to RDF
• Make alignments with existing well-adopted ontologies
(e.g. NCBI Taxonomic Classification, GeoNames...)
• Static alignments at mapping design time
• Using automatic alignment methods
Use case in Digital Humanities
1 SKOS: Simple Knowledge Organization System, W3C RDF-based standard to represent controlled
vocabularies, taxonomies and thesauri. Bridge the gap between existing KOS and the Semantic Web
and Linked Data.
28
 Ongoing discussion about the use of
xR2RML to support ecology and
agronomic studies
• Large phenotype databases
 Consider the query rewriting approach to support large
datasets
 How to write xR2RML mappings
• Automatic xR2RML mapping generation from data schema
(XSD/DTD, JSON schema, JSON-LD...)
• Schema mapping
• Schema discovery
Perspectives
29
Conclusions
 Data deluge keeps on ever faster
 Data stored in many kinds of DBs
 xR2RML:
• Flexible language to map most common types of database to
RDF
• Supports various data models and query languages
• Rich features: RDF collections/containers, joins, content with
mixed formats
 Applied to the construction of a SKOS thesaurus of
TAXREF, a taxonomical reference
30
Contacts:
Franck Michel
Johan Montagnat
Catherine Faron-Zucker
[2] C. Callou, F. Michel, C. Faron-Zucker, C. Martin, J. Montagnat. Towards a Shared Reference Thesaurus for
Studies on History of Zoology, Archaeozoology and Conservation Biology. In SW4SH workshop, ESWC’15.
[3] F. Michel, L. Djimenou, C. Faron-Zucker, and J. Montagnat. xR2RML: Non-Relational Databases to RDF
Mapping Language. Research report. ISRN I3S/RR 2014-04-FR. http://hal.archives-ouvertes.fr/hal-01066663
https://github.com/frmichel/morph-xr2rml/

More Related Content

What's hot

RDF data model
RDF data modelRDF data model
RDF data model
Jose Emilio Labra Gayo
 
Web Data Management with RDF
Web Data Management with RDFWeb Data Management with RDF
Web Data Management with RDF
M. Tamer Özsu
 
Linked (Open) Data
Linked (Open) DataLinked (Open) Data
Linked (Open) Data
Bernhard Haslhofer
 
A Generic Mapping-based Query Translation from SPARQL to Various Target Datab...
A Generic Mapping-based Query Translation from SPARQL to Various Target Datab...A Generic Mapping-based Query Translation from SPARQL to Various Target Datab...
A Generic Mapping-based Query Translation from SPARQL to Various Target Datab...
Franck Michel
 
2009 0807 Lod Gmod
2009 0807 Lod Gmod2009 0807 Lod Gmod
2009 0807 Lod Gmod
Jun Zhao
 
Achieving time effective federated information from scalable rdf data using s...
Achieving time effective federated information from scalable rdf data using s...Achieving time effective federated information from scalable rdf data using s...
Achieving time effective federated information from scalable rdf data using s...తేజ దండిభట్ల
 
Toward Semantic Representation of Science in Electronic Laboratory Notebooks ...
Toward Semantic Representation of Science in Electronic Laboratory Notebooks ...Toward Semantic Representation of Science in Electronic Laboratory Notebooks ...
Toward Semantic Representation of Science in Electronic Laboratory Notebooks ...
Stuart Chalk
 
SWT Lecture Session 9 - RDB2RDF direct mapping
SWT Lecture Session 9 - RDB2RDF direct mappingSWT Lecture Session 9 - RDB2RDF direct mapping
SWT Lecture Session 9 - RDB2RDF direct mappingMariano Rodriguez-Muro
 
Scaling the (evolving) web data –at low cost-
Scaling the (evolving) web data –at low cost-Scaling the (evolving) web data –at low cost-
Scaling the (evolving) web data –at low cost-
WU (Vienna University of Economics and Business)
 
Eureka Research Workbench: A Semantic Approach to an Open Source Electroni...
Eureka Research Workbench: A Semantic Approach to an Open Source Electroni...Eureka Research Workbench: A Semantic Approach to an Open Source Electroni...
Eureka Research Workbench: A Semantic Approach to an Open Source Electroni...
Stuart Chalk
 
Efficient RDF Interchange (ERI) Format for RDF Data Streams
Efficient RDF Interchange (ERI) Format for RDF Data StreamsEfficient RDF Interchange (ERI) Format for RDF Data Streams
Efficient RDF Interchange (ERI) Format for RDF Data Streams
WU (Vienna University of Economics and Business)
 
Democratizing Big Semantic Data management
Democratizing Big Semantic Data managementDemocratizing Big Semantic Data management
Democratizing Big Semantic Data management
WU (Vienna University of Economics and Business)
 
Rule-based Capture/Storage of Scientific Data from PDF Files and Export using...
Rule-based Capture/Storage of Scientific Data from PDF Files and Export using...Rule-based Capture/Storage of Scientific Data from PDF Files and Export using...
Rule-based Capture/Storage of Scientific Data from PDF Files and Export using...
Stuart Chalk
 

What's hot (19)

RDF data model
RDF data modelRDF data model
RDF data model
 
Web Data Management with RDF
Web Data Management with RDFWeb Data Management with RDF
Web Data Management with RDF
 
Linked (Open) Data
Linked (Open) DataLinked (Open) Data
Linked (Open) Data
 
A Generic Mapping-based Query Translation from SPARQL to Various Target Datab...
A Generic Mapping-based Query Translation from SPARQL to Various Target Datab...A Generic Mapping-based Query Translation from SPARQL to Various Target Datab...
A Generic Mapping-based Query Translation from SPARQL to Various Target Datab...
 
SWT Lecture Session 10 R2RML Part 1
SWT Lecture Session 10 R2RML Part 1SWT Lecture Session 10 R2RML Part 1
SWT Lecture Session 10 R2RML Part 1
 
2009 0807 Lod Gmod
2009 0807 Lod Gmod2009 0807 Lod Gmod
2009 0807 Lod Gmod
 
Achieving time effective federated information from scalable rdf data using s...
Achieving time effective federated information from scalable rdf data using s...Achieving time effective federated information from scalable rdf data using s...
Achieving time effective federated information from scalable rdf data using s...
 
Toward Semantic Representation of Science in Electronic Laboratory Notebooks ...
Toward Semantic Representation of Science in Electronic Laboratory Notebooks ...Toward Semantic Representation of Science in Electronic Laboratory Notebooks ...
Toward Semantic Representation of Science in Electronic Laboratory Notebooks ...
 
SWT Lecture Session 9 - RDB2RDF direct mapping
SWT Lecture Session 9 - RDB2RDF direct mappingSWT Lecture Session 9 - RDB2RDF direct mapping
SWT Lecture Session 9 - RDB2RDF direct mapping
 
Scaling the (evolving) web data –at low cost-
Scaling the (evolving) web data –at low cost-Scaling the (evolving) web data –at low cost-
Scaling the (evolving) web data –at low cost-
 
SWT Lecture Session 3 - SPARQL
SWT Lecture Session 3 - SPARQLSWT Lecture Session 3 - SPARQL
SWT Lecture Session 3 - SPARQL
 
SWT Lecture Session 8 - Rules
SWT Lecture Session 8 - RulesSWT Lecture Session 8 - Rules
SWT Lecture Session 8 - Rules
 
SWT Lecture Session 11 - R2RML part 2
SWT Lecture Session 11 - R2RML part 2SWT Lecture Session 11 - R2RML part 2
SWT Lecture Session 11 - R2RML part 2
 
5 rdfs
5 rdfs5 rdfs
5 rdfs
 
Eureka Research Workbench: A Semantic Approach to an Open Source Electroni...
Eureka Research Workbench: A Semantic Approach to an Open Source Electroni...Eureka Research Workbench: A Semantic Approach to an Open Source Electroni...
Eureka Research Workbench: A Semantic Approach to an Open Source Electroni...
 
Efficient RDF Interchange (ERI) Format for RDF Data Streams
Efficient RDF Interchange (ERI) Format for RDF Data StreamsEfficient RDF Interchange (ERI) Format for RDF Data Streams
Efficient RDF Interchange (ERI) Format for RDF Data Streams
 
Democratizing Big Semantic Data management
Democratizing Big Semantic Data managementDemocratizing Big Semantic Data management
Democratizing Big Semantic Data management
 
XSPARQL CrEDIBLE workshop
XSPARQL CrEDIBLE workshopXSPARQL CrEDIBLE workshop
XSPARQL CrEDIBLE workshop
 
Rule-based Capture/Storage of Scientific Data from PDF Files and Export using...
Rule-based Capture/Storage of Scientific Data from PDF Files and Export using...Rule-based Capture/Storage of Scientific Data from PDF Files and Export using...
Rule-based Capture/Storage of Scientific Data from PDF Files and Export using...
 

Viewers also liked

Who wants to be a millionaire game chemistry vocab
Who wants to be a millionaire game   chemistry vocabWho wants to be a millionaire game   chemistry vocab
Who wants to be a millionaire game chemistry vocabMrEmersonScience
 
Kanchi Periva Forum - Ebook # 18 - Navaratri 2013 - Kamakshi
Kanchi Periva Forum - Ebook # 18 - Navaratri 2013 - KamakshiKanchi Periva Forum - Ebook # 18 - Navaratri 2013 - Kamakshi
Kanchi Periva Forum - Ebook # 18 - Navaratri 2013 - Kamakshi
kanchiperiva
 
sejarah komputer beserta hardware dan software
sejarah komputer beserta hardware dan softwaresejarah komputer beserta hardware dan software
sejarah komputer beserta hardware dan softwareevirahma
 
Alopez powerpoint
Alopez powerpointAlopez powerpoint
Alopez powerpointatlopez
 
Sandra Roe Visual Resume
Sandra Roe Visual ResumeSandra Roe Visual Resume
Sandra Roe Visual Resume
Sandra Roe
 
Kanchi Periva Forum Newsletter - Volume 3
Kanchi Periva Forum Newsletter - Volume 3Kanchi Periva Forum Newsletter - Volume 3
Kanchi Periva Forum Newsletter - Volume 3
kanchiperiva
 
At89c4051
At89c4051At89c4051
Kursintroduktion entreprenörskap
Kursintroduktion entreprenörskapKursintroduktion entreprenörskap
Kursintroduktion entreprenörskap
Daniel Nordström
 
Landscape
LandscapeLandscape
Landscape
Satya Prakash
 
The making of Lys-de-Membre - part 4
The making of Lys-de-Membre - part 4The making of Lys-de-Membre - part 4
The making of Lys-de-Membre - part 4
Iris Casteleyn
 
Trabajator presentation
Trabajator presentationTrabajator presentation
Trabajator presentation
Trabajator
 
A New Approach: Automatically Identify Proper Noun from Bengali Sentence for ...
A New Approach: Automatically Identify Proper Noun from Bengali Sentence for ...A New Approach: Automatically Identify Proper Noun from Bengali Sentence for ...
A New Approach: Automatically Identify Proper Noun from Bengali Sentence for ...
Syeful Islam
 
Angela ajo
Angela ajoAngela ajo
Angela ajo
Inma Cuellar
 

Viewers also liked (17)

Who wants to be a millionaire game chemistry vocab
Who wants to be a millionaire game   chemistry vocabWho wants to be a millionaire game   chemistry vocab
Who wants to be a millionaire game chemistry vocab
 
Test PowerPoint C1
Test PowerPoint C1Test PowerPoint C1
Test PowerPoint C1
 
Kanchi Periva Forum - Ebook # 18 - Navaratri 2013 - Kamakshi
Kanchi Periva Forum - Ebook # 18 - Navaratri 2013 - KamakshiKanchi Periva Forum - Ebook # 18 - Navaratri 2013 - Kamakshi
Kanchi Periva Forum - Ebook # 18 - Navaratri 2013 - Kamakshi
 
sejarah komputer beserta hardware dan software
sejarah komputer beserta hardware dan softwaresejarah komputer beserta hardware dan software
sejarah komputer beserta hardware dan software
 
Alopez powerpoint
Alopez powerpointAlopez powerpoint
Alopez powerpoint
 
Question 5.
Question 5.Question 5.
Question 5.
 
Sandra Roe Visual Resume
Sandra Roe Visual ResumeSandra Roe Visual Resume
Sandra Roe Visual Resume
 
Kanchi Periva Forum Newsletter - Volume 3
Kanchi Periva Forum Newsletter - Volume 3Kanchi Periva Forum Newsletter - Volume 3
Kanchi Periva Forum Newsletter - Volume 3
 
At89c4051
At89c4051At89c4051
At89c4051
 
Kursintroduktion entreprenörskap
Kursintroduktion entreprenörskapKursintroduktion entreprenörskap
Kursintroduktion entreprenörskap
 
Partea 1
Partea 1Partea 1
Partea 1
 
Landscape
LandscapeLandscape
Landscape
 
The making of Lys-de-Membre - part 4
The making of Lys-de-Membre - part 4The making of Lys-de-Membre - part 4
The making of Lys-de-Membre - part 4
 
Trabajator presentation
Trabajator presentationTrabajator presentation
Trabajator presentation
 
Presentation1
Presentation1Presentation1
Presentation1
 
A New Approach: Automatically Identify Proper Noun from Bengali Sentence for ...
A New Approach: Automatically Identify Proper Noun from Bengali Sentence for ...A New Approach: Automatically Identify Proper Noun from Bengali Sentence for ...
A New Approach: Automatically Identify Proper Noun from Bengali Sentence for ...
 
Angela ajo
Angela ajoAngela ajo
Angela ajo
 

Similar to Translation of Relational and Non-Relational Databases into RDF with xR2RML

RDF-Gen: Generating RDF from streaming and archival data
RDF-Gen: Generating RDF from streaming and archival dataRDF-Gen: Generating RDF from streaming and archival data
RDF-Gen: Generating RDF from streaming and archival data
Giorgos Santipantakis
 
Benchmarking RDF Metadata Representations: Reification, Singleton Property an...
Benchmarking RDF Metadata Representations: Reification, Singleton Property an...Benchmarking RDF Metadata Representations: Reification, Singleton Property an...
Benchmarking RDF Metadata Representations: Reification, Singleton Property an...
Fabrizio Orlandi
 
Data Integration And Visualization
Data Integration And VisualizationData Integration And Visualization
Data Integration And Visualization
Ivan Ermilov
 
State of the Semantic Web
State of the Semantic WebState of the Semantic Web
State of the Semantic Web
Ivan Herman
 
Going for GOLD - Adventures in Open Linked Geospatial Metadata
Going for GOLD - Adventures in Open Linked Geospatial MetadataGoing for GOLD - Adventures in Open Linked Geospatial Metadata
Going for GOLD - Adventures in Open Linked Geospatial Metadata
EDINA, University of Edinburgh
 
Enterprise knowledge graphs
Enterprise knowledge graphsEnterprise knowledge graphs
Enterprise knowledge graphs
Sören Auer
 
Do it on your own - From 3 to 5 Star Linked Open Data with RMLio
Do it on your own - From 3 to 5 Star Linked Open Data with RMLioDo it on your own - From 3 to 5 Star Linked Open Data with RMLio
Do it on your own - From 3 to 5 Star Linked Open Data with RMLio
Open Knowledge Belgium
 
Vital AI: Big Data Modeling
Vital AI: Big Data ModelingVital AI: Big Data Modeling
Vital AI: Big Data Modeling
Vital.AI
 
Wed roman tut_open_datapub
Wed roman tut_open_datapubWed roman tut_open_datapub
Wed roman tut_open_datapubeswcsummerschool
 
FIWARE Global Summit - IDS Implementation with FIWARE Software Components
FIWARE Global Summit - IDS Implementation with FIWARE Software ComponentsFIWARE Global Summit - IDS Implementation with FIWARE Software Components
FIWARE Global Summit - IDS Implementation with FIWARE Software Components
FIWARE
 
Scalable and privacy-preserving data integration - part 1
Scalable and privacy-preserving data integration - part 1Scalable and privacy-preserving data integration - part 1
Scalable and privacy-preserving data integration - part 1
ErhardRahm
 
ROHub-Argos integration
ROHub-Argos integrationROHub-Argos integration
ROHub-Argos integration
Raul Palma
 
Introduction to linked data
Introduction to linked dataIntroduction to linked data
Introduction to linked data
Laura Po
 
Exploring the Semantic Web
Exploring the Semantic WebExploring the Semantic Web
Exploring the Semantic Web
Roberto García
 
RDTF Metadata Guidelines: an update
RDTF Metadata Guidelines: an updateRDTF Metadata Guidelines: an update
RDTF Metadata Guidelines: an update
Andy Powell
 
ESWC 2019 - A Software Framework and Datasets for the Analysis of Graphs Meas...
ESWC 2019 - A Software Framework and Datasets for the Analysis of Graphs Meas...ESWC 2019 - A Software Framework and Datasets for the Analysis of Graphs Meas...
ESWC 2019 - A Software Framework and Datasets for the Analysis of Graphs Meas...
Matthäus Zloch
 
Data integration with a façade. The case of knowledge graph construction.
Data integration with a façade. The case of knowledge graph construction.Data integration with a façade. The case of knowledge graph construction.
Data integration with a façade. The case of knowledge graph construction.
Enrico Daga
 
What Are Links in Linked Open Data? A Characterization and Evaluation of Link...
What Are Links in Linked Open Data? A Characterization and Evaluation of Link...What Are Links in Linked Open Data? A Characterization and Evaluation of Link...
What Are Links in Linked Open Data? A Characterization and Evaluation of Link...
Armin Haller
 
Transient and persistent RDF views over relational databases in the context o...
Transient and persistent RDF views over relational databases in the context o...Transient and persistent RDF views over relational databases in the context o...
Transient and persistent RDF views over relational databases in the context o...
Nikolaos Konstantinou
 
Triplestore and SPARQL
Triplestore and SPARQLTriplestore and SPARQL
Triplestore and SPARQLLino Valdivia
 

Similar to Translation of Relational and Non-Relational Databases into RDF with xR2RML (20)

RDF-Gen: Generating RDF from streaming and archival data
RDF-Gen: Generating RDF from streaming and archival dataRDF-Gen: Generating RDF from streaming and archival data
RDF-Gen: Generating RDF from streaming and archival data
 
Benchmarking RDF Metadata Representations: Reification, Singleton Property an...
Benchmarking RDF Metadata Representations: Reification, Singleton Property an...Benchmarking RDF Metadata Representations: Reification, Singleton Property an...
Benchmarking RDF Metadata Representations: Reification, Singleton Property an...
 
Data Integration And Visualization
Data Integration And VisualizationData Integration And Visualization
Data Integration And Visualization
 
State of the Semantic Web
State of the Semantic WebState of the Semantic Web
State of the Semantic Web
 
Going for GOLD - Adventures in Open Linked Geospatial Metadata
Going for GOLD - Adventures in Open Linked Geospatial MetadataGoing for GOLD - Adventures in Open Linked Geospatial Metadata
Going for GOLD - Adventures in Open Linked Geospatial Metadata
 
Enterprise knowledge graphs
Enterprise knowledge graphsEnterprise knowledge graphs
Enterprise knowledge graphs
 
Do it on your own - From 3 to 5 Star Linked Open Data with RMLio
Do it on your own - From 3 to 5 Star Linked Open Data with RMLioDo it on your own - From 3 to 5 Star Linked Open Data with RMLio
Do it on your own - From 3 to 5 Star Linked Open Data with RMLio
 
Vital AI: Big Data Modeling
Vital AI: Big Data ModelingVital AI: Big Data Modeling
Vital AI: Big Data Modeling
 
Wed roman tut_open_datapub
Wed roman tut_open_datapubWed roman tut_open_datapub
Wed roman tut_open_datapub
 
FIWARE Global Summit - IDS Implementation with FIWARE Software Components
FIWARE Global Summit - IDS Implementation with FIWARE Software ComponentsFIWARE Global Summit - IDS Implementation with FIWARE Software Components
FIWARE Global Summit - IDS Implementation with FIWARE Software Components
 
Scalable and privacy-preserving data integration - part 1
Scalable and privacy-preserving data integration - part 1Scalable and privacy-preserving data integration - part 1
Scalable and privacy-preserving data integration - part 1
 
ROHub-Argos integration
ROHub-Argos integrationROHub-Argos integration
ROHub-Argos integration
 
Introduction to linked data
Introduction to linked dataIntroduction to linked data
Introduction to linked data
 
Exploring the Semantic Web
Exploring the Semantic WebExploring the Semantic Web
Exploring the Semantic Web
 
RDTF Metadata Guidelines: an update
RDTF Metadata Guidelines: an updateRDTF Metadata Guidelines: an update
RDTF Metadata Guidelines: an update
 
ESWC 2019 - A Software Framework and Datasets for the Analysis of Graphs Meas...
ESWC 2019 - A Software Framework and Datasets for the Analysis of Graphs Meas...ESWC 2019 - A Software Framework and Datasets for the Analysis of Graphs Meas...
ESWC 2019 - A Software Framework and Datasets for the Analysis of Graphs Meas...
 
Data integration with a façade. The case of knowledge graph construction.
Data integration with a façade. The case of knowledge graph construction.Data integration with a façade. The case of knowledge graph construction.
Data integration with a façade. The case of knowledge graph construction.
 
What Are Links in Linked Open Data? A Characterization and Evaluation of Link...
What Are Links in Linked Open Data? A Characterization and Evaluation of Link...What Are Links in Linked Open Data? A Characterization and Evaluation of Link...
What Are Links in Linked Open Data? A Characterization and Evaluation of Link...
 
Transient and persistent RDF views over relational databases in the context o...
Transient and persistent RDF views over relational databases in the context o...Transient and persistent RDF views over relational databases in the context o...
Transient and persistent RDF views over relational databases in the context o...
 
Triplestore and SPARQL
Triplestore and SPARQLTriplestore and SPARQL
Triplestore and SPARQL
 

More from Franck Michel

ISSA: Generic Pipeline, Knowledge Model and Visualization tools to Help Scien...
ISSA: Generic Pipeline, Knowledge Model and Visualization tools to Help Scien...ISSA: Generic Pipeline, Knowledge Model and Visualization tools to Help Scien...
ISSA: Generic Pipeline, Knowledge Model and Visualization tools to Help Scien...
Franck Michel
 
Bioschemas: Marking up biodiversity websites to improve data discovery and we...
Bioschemas: Marking up biodiversity websites to improve data discovery and we...Bioschemas: Marking up biodiversity websites to improve data discovery and we...
Bioschemas: Marking up biodiversity websites to improve data discovery and we...
Franck Michel
 
Unleash the Potential of your Website! 180,000 webpages from the French NHM m...
Unleash the Potential of your Website! 180,000 webpages from the French NHM m...Unleash the Potential of your Website! 180,000 webpages from the French NHM m...
Unleash the Potential of your Website! 180,000 webpages from the French NHM m...
Franck Michel
 
Heterogeneous Data Aggregation and Querying at Web Scale Using Semantic align...
Heterogeneous Data Aggregation and Querying at Web Scale Using Semantic align...Heterogeneous Data Aggregation and Querying at Web Scale Using Semantic align...
Heterogeneous Data Aggregation and Querying at Web Scale Using Semantic align...
Franck Michel
 
Describe and Publish data sets on the web: vocabularies, catalogues, data por...
Describe and Publish data sets on the web: vocabularies, catalogues, data por...Describe and Publish data sets on the web: vocabularies, catalogues, data por...
Describe and Publish data sets on the web: vocabularies, catalogues, data por...
Franck Michel
 
Knowledge Engineering: Semantic web, web of data, linked data
Knowledge Engineering: Semantic web, web of data, linked dataKnowledge Engineering: Semantic web, web of data, linked data
Knowledge Engineering: Semantic web, web of data, linked data
Franck Michel
 
Enabling Automatic Discovery and Querying of Web APIs at Web Scale using Link...
Enabling Automatic Discovery and Querying of Web APIs at Web Scale using Link...Enabling Automatic Discovery and Querying of Web APIs at Web Scale using Link...
Enabling Automatic Discovery and Querying of Web APIs at Web Scale using Link...
Franck Michel
 
Modelling Biodiversity Linked Data: Pragmatism May Narrow Future Opportunities
Modelling Biodiversity Linked Data: Pragmatism May Narrow Future OpportunitiesModelling Biodiversity Linked Data: Pragmatism May Narrow Future Opportunities
Modelling Biodiversity Linked Data: Pragmatism May Narrow Future Opportunities
Franck Michel
 
A Model to Represent Nomenclatural and Taxonomic Information as Linked Data. ...
A Model to Represent Nomenclatural and Taxonomic Information as Linked Data. ...A Model to Represent Nomenclatural and Taxonomic Information as Linked Data. ...
A Model to Represent Nomenclatural and Taxonomic Information as Linked Data. ...
Franck Michel
 
SPARQL Micro-Services: Lightweight Integration of Web APIs and Linked Data
SPARQL Micro-Services: Lightweight Integration of Web APIs and Linked DataSPARQL Micro-Services: Lightweight Integration of Web APIs and Linked Data
SPARQL Micro-Services: Lightweight Integration of Web APIs and Linked Data
Franck Michel
 
Construction d’un référentiel taxonomique commun pour des études sur l’histoi...
Construction d’un référentiel taxonomique commun pour des études sur l’histoi...Construction d’un référentiel taxonomique commun pour des études sur l’histoi...
Construction d’un référentiel taxonomique commun pour des études sur l’histoi...
Franck Michel
 
A Mapping-based Method to Query MongoDB Documents with SPARQL
A Mapping-based Method to Query MongoDB Documents with SPARQLA Mapping-based Method to Query MongoDB Documents with SPARQL
A Mapping-based Method to Query MongoDB Documents with SPARQL
Franck Michel
 
Make our Scientific Datasets Accessible and Interoperable on the Web
Make our Scientific Datasets Accessible and Interoperable on the WebMake our Scientific Datasets Accessible and Interoperable on the Web
Make our Scientific Datasets Accessible and Interoperable on the Web
Franck Michel
 
Towards a Shared Reference Thesaurus for Studies on History of Zoology, Archa...
Towards a Shared Reference Thesaurus for Studies on History of Zoology, Archa...Towards a Shared Reference Thesaurus for Studies on History of Zoology, Archa...
Towards a Shared Reference Thesaurus for Studies on History of Zoology, Archa...
Franck Michel
 

More from Franck Michel (14)

ISSA: Generic Pipeline, Knowledge Model and Visualization tools to Help Scien...
ISSA: Generic Pipeline, Knowledge Model and Visualization tools to Help Scien...ISSA: Generic Pipeline, Knowledge Model and Visualization tools to Help Scien...
ISSA: Generic Pipeline, Knowledge Model and Visualization tools to Help Scien...
 
Bioschemas: Marking up biodiversity websites to improve data discovery and we...
Bioschemas: Marking up biodiversity websites to improve data discovery and we...Bioschemas: Marking up biodiversity websites to improve data discovery and we...
Bioschemas: Marking up biodiversity websites to improve data discovery and we...
 
Unleash the Potential of your Website! 180,000 webpages from the French NHM m...
Unleash the Potential of your Website! 180,000 webpages from the French NHM m...Unleash the Potential of your Website! 180,000 webpages from the French NHM m...
Unleash the Potential of your Website! 180,000 webpages from the French NHM m...
 
Heterogeneous Data Aggregation and Querying at Web Scale Using Semantic align...
Heterogeneous Data Aggregation and Querying at Web Scale Using Semantic align...Heterogeneous Data Aggregation and Querying at Web Scale Using Semantic align...
Heterogeneous Data Aggregation and Querying at Web Scale Using Semantic align...
 
Describe and Publish data sets on the web: vocabularies, catalogues, data por...
Describe and Publish data sets on the web: vocabularies, catalogues, data por...Describe and Publish data sets on the web: vocabularies, catalogues, data por...
Describe and Publish data sets on the web: vocabularies, catalogues, data por...
 
Knowledge Engineering: Semantic web, web of data, linked data
Knowledge Engineering: Semantic web, web of data, linked dataKnowledge Engineering: Semantic web, web of data, linked data
Knowledge Engineering: Semantic web, web of data, linked data
 
Enabling Automatic Discovery and Querying of Web APIs at Web Scale using Link...
Enabling Automatic Discovery and Querying of Web APIs at Web Scale using Link...Enabling Automatic Discovery and Querying of Web APIs at Web Scale using Link...
Enabling Automatic Discovery and Querying of Web APIs at Web Scale using Link...
 
Modelling Biodiversity Linked Data: Pragmatism May Narrow Future Opportunities
Modelling Biodiversity Linked Data: Pragmatism May Narrow Future OpportunitiesModelling Biodiversity Linked Data: Pragmatism May Narrow Future Opportunities
Modelling Biodiversity Linked Data: Pragmatism May Narrow Future Opportunities
 
A Model to Represent Nomenclatural and Taxonomic Information as Linked Data. ...
A Model to Represent Nomenclatural and Taxonomic Information as Linked Data. ...A Model to Represent Nomenclatural and Taxonomic Information as Linked Data. ...
A Model to Represent Nomenclatural and Taxonomic Information as Linked Data. ...
 
SPARQL Micro-Services: Lightweight Integration of Web APIs and Linked Data
SPARQL Micro-Services: Lightweight Integration of Web APIs and Linked DataSPARQL Micro-Services: Lightweight Integration of Web APIs and Linked Data
SPARQL Micro-Services: Lightweight Integration of Web APIs and Linked Data
 
Construction d’un référentiel taxonomique commun pour des études sur l’histoi...
Construction d’un référentiel taxonomique commun pour des études sur l’histoi...Construction d’un référentiel taxonomique commun pour des études sur l’histoi...
Construction d’un référentiel taxonomique commun pour des études sur l’histoi...
 
A Mapping-based Method to Query MongoDB Documents with SPARQL
A Mapping-based Method to Query MongoDB Documents with SPARQLA Mapping-based Method to Query MongoDB Documents with SPARQL
A Mapping-based Method to Query MongoDB Documents with SPARQL
 
Make our Scientific Datasets Accessible and Interoperable on the Web
Make our Scientific Datasets Accessible and Interoperable on the WebMake our Scientific Datasets Accessible and Interoperable on the Web
Make our Scientific Datasets Accessible and Interoperable on the Web
 
Towards a Shared Reference Thesaurus for Studies on History of Zoology, Archa...
Towards a Shared Reference Thesaurus for Studies on History of Zoology, Archa...Towards a Shared Reference Thesaurus for Studies on History of Zoology, Archa...
Towards a Shared Reference Thesaurus for Studies on History of Zoology, Archa...
 

Recently uploaded

Chapter 12 - climate change and the energy crisis
Chapter 12 - climate change and the energy crisisChapter 12 - climate change and the energy crisis
Chapter 12 - climate change and the energy crisis
tonzsalvador2222
 
Topic: SICKLE CELL DISEASE IN CHILDREN-3.pdf
Topic: SICKLE CELL DISEASE IN CHILDREN-3.pdfTopic: SICKLE CELL DISEASE IN CHILDREN-3.pdf
Topic: SICKLE CELL DISEASE IN CHILDREN-3.pdf
TinyAnderson
 
Red blood cells- genesis-maturation.pptx
Red blood cells- genesis-maturation.pptxRed blood cells- genesis-maturation.pptx
Red blood cells- genesis-maturation.pptx
muralinath2
 
Mudde & Rovira Kaltwasser. - Populism in Europe and the Americas - Threat Or...
Mudde &  Rovira Kaltwasser. - Populism in Europe and the Americas - Threat Or...Mudde &  Rovira Kaltwasser. - Populism in Europe and the Americas - Threat Or...
Mudde & Rovira Kaltwasser. - Populism in Europe and the Americas - Threat Or...
frank0071
 
Nucleic Acid-its structural and functional complexity.
Nucleic Acid-its structural and functional complexity.Nucleic Acid-its structural and functional complexity.
Nucleic Acid-its structural and functional complexity.
Nistarini College, Purulia (W.B) India
 
Observation of Io’s Resurfacing via Plume Deposition Using Ground-based Adapt...
Observation of Io’s Resurfacing via Plume Deposition Using Ground-based Adapt...Observation of Io’s Resurfacing via Plume Deposition Using Ground-based Adapt...
Observation of Io’s Resurfacing via Plume Deposition Using Ground-based Adapt...
Sérgio Sacani
 
What is greenhouse gasses and how many gasses are there to affect the Earth.
What is greenhouse gasses and how many gasses are there to affect the Earth.What is greenhouse gasses and how many gasses are there to affect the Earth.
What is greenhouse gasses and how many gasses are there to affect the Earth.
moosaasad1975
 
20240520 Planning a Circuit Simulator in JavaScript.pptx
20240520 Planning a Circuit Simulator in JavaScript.pptx20240520 Planning a Circuit Simulator in JavaScript.pptx
20240520 Planning a Circuit Simulator in JavaScript.pptx
Sharon Liu
 
Leaf Initiation, Growth and Differentiation.pdf
Leaf Initiation, Growth and Differentiation.pdfLeaf Initiation, Growth and Differentiation.pdf
Leaf Initiation, Growth and Differentiation.pdf
RenuJangid3
 
Orion Air Quality Monitoring Systems - CWS
Orion Air Quality Monitoring Systems - CWSOrion Air Quality Monitoring Systems - CWS
Orion Air Quality Monitoring Systems - CWS
Columbia Weather Systems
 
Anemia_ types_clinical significance.pptx
Anemia_ types_clinical significance.pptxAnemia_ types_clinical significance.pptx
Anemia_ types_clinical significance.pptx
muralinath2
 
Deep Behavioral Phenotyping in Systems Neuroscience for Functional Atlasing a...
Deep Behavioral Phenotyping in Systems Neuroscience for Functional Atlasing a...Deep Behavioral Phenotyping in Systems Neuroscience for Functional Atlasing a...
Deep Behavioral Phenotyping in Systems Neuroscience for Functional Atlasing a...
Ana Luísa Pinho
 
Comparing Evolved Extractive Text Summary Scores of Bidirectional Encoder Rep...
Comparing Evolved Extractive Text Summary Scores of Bidirectional Encoder Rep...Comparing Evolved Extractive Text Summary Scores of Bidirectional Encoder Rep...
Comparing Evolved Extractive Text Summary Scores of Bidirectional Encoder Rep...
University of Maribor
 
Unveiling the Energy Potential of Marshmallow Deposits.pdf
Unveiling the Energy Potential of Marshmallow Deposits.pdfUnveiling the Energy Potential of Marshmallow Deposits.pdf
Unveiling the Energy Potential of Marshmallow Deposits.pdf
Erdal Coalmaker
 
DERIVATION OF MODIFIED BERNOULLI EQUATION WITH VISCOUS EFFECTS AND TERMINAL V...
DERIVATION OF MODIFIED BERNOULLI EQUATION WITH VISCOUS EFFECTS AND TERMINAL V...DERIVATION OF MODIFIED BERNOULLI EQUATION WITH VISCOUS EFFECTS AND TERMINAL V...
DERIVATION OF MODIFIED BERNOULLI EQUATION WITH VISCOUS EFFECTS AND TERMINAL V...
Wasswaderrick3
 
DMARDs Pharmacolgy Pharm D 5th Semester.pdf
DMARDs Pharmacolgy Pharm D 5th Semester.pdfDMARDs Pharmacolgy Pharm D 5th Semester.pdf
DMARDs Pharmacolgy Pharm D 5th Semester.pdf
fafyfskhan251kmf
 
3D Hybrid PIC simulation of the plasma expansion (ISSS-14)
3D Hybrid PIC simulation of the plasma expansion (ISSS-14)3D Hybrid PIC simulation of the plasma expansion (ISSS-14)
3D Hybrid PIC simulation of the plasma expansion (ISSS-14)
David Osipyan
 
如何办理(uvic毕业证书)维多利亚大学毕业证本科学位证书原版一模一样
如何办理(uvic毕业证书)维多利亚大学毕业证本科学位证书原版一模一样如何办理(uvic毕业证书)维多利亚大学毕业证本科学位证书原版一模一样
如何办理(uvic毕业证书)维多利亚大学毕业证本科学位证书原版一模一样
yqqaatn0
 
THEMATIC APPERCEPTION TEST(TAT) cognitive abilities, creativity, and critic...
THEMATIC  APPERCEPTION  TEST(TAT) cognitive abilities, creativity, and critic...THEMATIC  APPERCEPTION  TEST(TAT) cognitive abilities, creativity, and critic...
THEMATIC APPERCEPTION TEST(TAT) cognitive abilities, creativity, and critic...
Abdul Wali Khan University Mardan,kP,Pakistan
 
Mudde & Rovira Kaltwasser. - Populism - a very short introduction [2017].pdf
Mudde & Rovira Kaltwasser. - Populism - a very short introduction [2017].pdfMudde & Rovira Kaltwasser. - Populism - a very short introduction [2017].pdf
Mudde & Rovira Kaltwasser. - Populism - a very short introduction [2017].pdf
frank0071
 

Recently uploaded (20)

Chapter 12 - climate change and the energy crisis
Chapter 12 - climate change and the energy crisisChapter 12 - climate change and the energy crisis
Chapter 12 - climate change and the energy crisis
 
Topic: SICKLE CELL DISEASE IN CHILDREN-3.pdf
Topic: SICKLE CELL DISEASE IN CHILDREN-3.pdfTopic: SICKLE CELL DISEASE IN CHILDREN-3.pdf
Topic: SICKLE CELL DISEASE IN CHILDREN-3.pdf
 
Red blood cells- genesis-maturation.pptx
Red blood cells- genesis-maturation.pptxRed blood cells- genesis-maturation.pptx
Red blood cells- genesis-maturation.pptx
 
Mudde & Rovira Kaltwasser. - Populism in Europe and the Americas - Threat Or...
Mudde &  Rovira Kaltwasser. - Populism in Europe and the Americas - Threat Or...Mudde &  Rovira Kaltwasser. - Populism in Europe and the Americas - Threat Or...
Mudde & Rovira Kaltwasser. - Populism in Europe and the Americas - Threat Or...
 
Nucleic Acid-its structural and functional complexity.
Nucleic Acid-its structural and functional complexity.Nucleic Acid-its structural and functional complexity.
Nucleic Acid-its structural and functional complexity.
 
Observation of Io’s Resurfacing via Plume Deposition Using Ground-based Adapt...
Observation of Io’s Resurfacing via Plume Deposition Using Ground-based Adapt...Observation of Io’s Resurfacing via Plume Deposition Using Ground-based Adapt...
Observation of Io’s Resurfacing via Plume Deposition Using Ground-based Adapt...
 
What is greenhouse gasses and how many gasses are there to affect the Earth.
What is greenhouse gasses and how many gasses are there to affect the Earth.What is greenhouse gasses and how many gasses are there to affect the Earth.
What is greenhouse gasses and how many gasses are there to affect the Earth.
 
20240520 Planning a Circuit Simulator in JavaScript.pptx
20240520 Planning a Circuit Simulator in JavaScript.pptx20240520 Planning a Circuit Simulator in JavaScript.pptx
20240520 Planning a Circuit Simulator in JavaScript.pptx
 
Leaf Initiation, Growth and Differentiation.pdf
Leaf Initiation, Growth and Differentiation.pdfLeaf Initiation, Growth and Differentiation.pdf
Leaf Initiation, Growth and Differentiation.pdf
 
Orion Air Quality Monitoring Systems - CWS
Orion Air Quality Monitoring Systems - CWSOrion Air Quality Monitoring Systems - CWS
Orion Air Quality Monitoring Systems - CWS
 
Anemia_ types_clinical significance.pptx
Anemia_ types_clinical significance.pptxAnemia_ types_clinical significance.pptx
Anemia_ types_clinical significance.pptx
 
Deep Behavioral Phenotyping in Systems Neuroscience for Functional Atlasing a...
Deep Behavioral Phenotyping in Systems Neuroscience for Functional Atlasing a...Deep Behavioral Phenotyping in Systems Neuroscience for Functional Atlasing a...
Deep Behavioral Phenotyping in Systems Neuroscience for Functional Atlasing a...
 
Comparing Evolved Extractive Text Summary Scores of Bidirectional Encoder Rep...
Comparing Evolved Extractive Text Summary Scores of Bidirectional Encoder Rep...Comparing Evolved Extractive Text Summary Scores of Bidirectional Encoder Rep...
Comparing Evolved Extractive Text Summary Scores of Bidirectional Encoder Rep...
 
Unveiling the Energy Potential of Marshmallow Deposits.pdf
Unveiling the Energy Potential of Marshmallow Deposits.pdfUnveiling the Energy Potential of Marshmallow Deposits.pdf
Unveiling the Energy Potential of Marshmallow Deposits.pdf
 
DERIVATION OF MODIFIED BERNOULLI EQUATION WITH VISCOUS EFFECTS AND TERMINAL V...
DERIVATION OF MODIFIED BERNOULLI EQUATION WITH VISCOUS EFFECTS AND TERMINAL V...DERIVATION OF MODIFIED BERNOULLI EQUATION WITH VISCOUS EFFECTS AND TERMINAL V...
DERIVATION OF MODIFIED BERNOULLI EQUATION WITH VISCOUS EFFECTS AND TERMINAL V...
 
DMARDs Pharmacolgy Pharm D 5th Semester.pdf
DMARDs Pharmacolgy Pharm D 5th Semester.pdfDMARDs Pharmacolgy Pharm D 5th Semester.pdf
DMARDs Pharmacolgy Pharm D 5th Semester.pdf
 
3D Hybrid PIC simulation of the plasma expansion (ISSS-14)
3D Hybrid PIC simulation of the plasma expansion (ISSS-14)3D Hybrid PIC simulation of the plasma expansion (ISSS-14)
3D Hybrid PIC simulation of the plasma expansion (ISSS-14)
 
如何办理(uvic毕业证书)维多利亚大学毕业证本科学位证书原版一模一样
如何办理(uvic毕业证书)维多利亚大学毕业证本科学位证书原版一模一样如何办理(uvic毕业证书)维多利亚大学毕业证本科学位证书原版一模一样
如何办理(uvic毕业证书)维多利亚大学毕业证本科学位证书原版一模一样
 
THEMATIC APPERCEPTION TEST(TAT) cognitive abilities, creativity, and critic...
THEMATIC  APPERCEPTION  TEST(TAT) cognitive abilities, creativity, and critic...THEMATIC  APPERCEPTION  TEST(TAT) cognitive abilities, creativity, and critic...
THEMATIC APPERCEPTION TEST(TAT) cognitive abilities, creativity, and critic...
 
Mudde & Rovira Kaltwasser. - Populism - a very short introduction [2017].pdf
Mudde & Rovira Kaltwasser. - Populism - a very short introduction [2017].pdfMudde & Rovira Kaltwasser. - Populism - a very short introduction [2017].pdf
Mudde & Rovira Kaltwasser. - Populism - a very short introduction [2017].pdf
 

Translation of Relational and Non-Relational Databases into RDF with xR2RML

  • 1. 1 Translation of Relational and Non-Relational Databases into RDF with xR2RML F. Michel, L. Djimenou, C. Faron-Zucker, J. Montagnat I3S lab, CNRS, Univ. Nice Sophia
  • 2. 2  Web of data  publication/interlinking of open datasets • Goal: publish heterogeneous data in a common format (RDF)  Driven by data integration initiatives, e.g.: • Linking Open Data, 1015 ds. • W3C Data Activity • BIO2RDF, 35 ds. • Neuroscience Information Framework (12598 registry entries) Web-scale data integration Linked Datasets as of Aug. 30th 2014. (c) R. Cyganiak & and A. Jentzsch (Data: Apr. 2015)
  • 3. 3 Web-scale data integration  Need to access data from the Deep Web [1] • Strd./unstrd. data hardly indexed by search engines, hardly linked with other data sources  Exponential data growth goes on • Various types of DBs: RDB, NoSQL, NewSQL, Native XML, LDAP directory, OODB... • Heterogeneous data models and query capabilities [1] B. He, M. Patel, Z. Zhang, and K. C.-C. Chang. Accessing the deep web. Communications of the ACM, 50(5):94–101, 2007
  • 4. 4 Web-scale data integration To enrich the web of data with existing and new data being created ever faster... ... we need standardized approaches to enable the translation of heterogeneous data sources to RDF
  • 5. 5  Previous works  Background: R2RML and RML  Description of xR2RML  Evaluation and perspectives Agenda
  • 6. 6  Previous works  Background: R2RML and RML  Description of xR2RML  Evaluation and perspectives Agenda
  • 7. 7  Much work achieved on RDBs D2RQ, Virtuoso, R2RML (W3C)… Goals: generic RDB-to-RDF, OBDA, ontology learning, schema mapping… Methods: direct mapping vs. domain-specific, materialization vs. SQL-to-SPARQL query rewriting  XML: using either XPath (RML), XQuery (XSPARQL, SPARQL2XQuery) or XSLT (Scissor-Lift), XSD-to-OWL (SPARQL2XQuery)  CSV/TSV/Spreadsheets: CSV on the web (W3C WG)  JSON: using JSONPath (RML)  Integration frameworks: DataLift, RML, Asio Tool Suite… Previous works
  • 8. 8  Existing approaches to map specific types of databases or map specific data formats to RDF  Each comes with its own mapping language or UI  Supporting a new system (data model and QL) not straightforward Previous works No unified mapping language to equally apply to most common databases (RDB, NoSQL, XML, LDAP, OO…) Supporting a new data model and/or QL  develop a DB connector but no change in the mapping language
  • 9. 9  Previous works  Background: R2RML and RML  Description of xR2RML  Evaluation and perspectives Agenda
  • 10. 10 R2RML – RDB To RDF Mapping Language  W3C recommendation, 2012  Goals: • Describe mappings of relational entities to RDF • Reuse of existing ontologies • Operationalization not addressed  How: TriplesMaps (TM) define how to generate RDF triples • 1 logical table  rows to process • 1 subject map  subject IRIs • N (predicate map-object map) couples • 1 opt. graph map  graph IRIs  An R2RML mapping is an RDF graph Triples
  • 11. 11 R2RML – RDB To RDF Mapping Language Id Acronym Centre_Id 10 CAC2010 4 Id Name address 4 Pasteur ... Study Centre FK R2RML mapping graph: Produced RDF: <#Centre> a rr:TriplesMap; rr:logicalTable [ rr:tableName "Centre" ]; rr:subjectMap [ rr:class ex:Centre; rr:template "http://example.org/centre#{Name}"; ]. <#Study> a rr:TriplesMap; rr:logicalTable [ rr:tableName “Study" ]; rr:subjectMap [ rr:class ex:Study; rr:template "http://example.org/study#{Id}"; ]; rr:predicateObjectMap [ rr:predicate ex:hasName; rr:objectMap [ rr:column "Acronym" ]; ]; rr:predicateObjectMap [ rr:predicate ex:locatedIn; rr:objectMap [ rr:parentTriplesMap <#Centre>; rr:joinCondition [ rr:child "Centre_id"; rr:parent "Id"; ]; ]; ]. <http://example.org/centre#Pasteur> a ex:Centre. <http://example.org/study#10> a ex:Study; ex:hasName "CAC2010"; ex:locatedIn <http://example.org/centre#Pasteur>.
  • 12. 12 <#Centre> rml:logicalSource [ rml:source “http://example.org/Centres.xml"; rml:referenceFormulation ql:XPath; rml:iterator “/centres/centre”: ]; rr:subjectMap [ rr:class ex:Centre; rr:template "http://example.org/centre#{//centre/@Id}"; ]; rr:predicateObjectMap [ rr:predicate ex:hasName; rr:objectMap [ rml:reference "//centre/name" ]; ]; RML extensions to R2RML <centres> <centre @Id="4"> <name>Pasteur</name> </centre> <centre @Id="6"> <name>Pontchaillou</name> </centre> </centres> Advantages: • Extends to CSV, JSON, XML sources • Map several sources simultaneously Limitations: • Fixed list of reference formulations • No distinction between reference formulation and query language • No RDF collections RML mapping graph:XML document:
  • 13. 13  Previous works  Background: R2RML and RML  Description of xR2RML  Evaluation and perspectives Agenda
  • 14. 14 xR2RML - Overall picture xR2RML Translation Engine xR2RML Mapping description Native QL Source database Flexible language to describe mappings from most common types of DB to RDF. Extends R2RML and leverages RML extensions. Domain ontologies refers to Domain ontologies uses
  • 15. 15 xR2RML: Logical source <#Centre> xrr:logicalSource [ xrr:query ’’’for $x in doc(“centres.xml”)/centres/centre where ... return $x’’’; ]; rr: R2RML vocabulary xrr: xR2RML vocabulary <centres> <centre @Id="4"> <name>Pasteur</name> </centre> <centre @Id="6"> <name>Pontchaillou</name> </centre> </centres> XML database supporting XQuey: xR2RML mapping graph:
  • 16. 16 xR2RML: Data element references <#Centre> xrr:logicalSource [ xrr:query ’’’for $x in doc(“centres.xml”)/centres/centre where ... return $x’’’; ]; rr:subjectMap [ rr:class ex:Centre; rr:template "http://example.org/centre#{//centre/@Id}"; ]; rr:predicateObjectMap [ rr:predicate ex:hasName; rr:objectMap [ xrr:reference "//centre/name" ]; ]; rr: R2RML vocabulary xrr: xR2RML vocabulary <centres> <centre @Id="4"> <name>Pasteur</name> </centre> <centre @Id="6"> <name>Pontchaillou</name> </centre> </centres> XML database supporting XQuey: xR2RML mapping graph:
  • 17. 17 xR2RML: Data element references <centres> <centre @Id="4"> <name>Pasteur</name> </centre> <centre @Id="6"> <name>Pontchaillou</name> </centre> </centres> XML database supporting XQuey: xR2RML mapping graph: rr: R2RML vocabulary xrr: xR2RML vocabulary <#Centre> xrr:logicalSource [ xrr:query ’’’for $x in doc(“centres.xml”)/centres/centre where ... return $x’’’; ]; rr:subjectMap [ rr:class ex:Centre; rr:template "http://example.org/centre#{//centre/@Id}"; ]; rr:predicateObjectMap [ rr:predicate ex:hasName; rr:objectMap [ xrr:reference “//centre/name" ]; ]; xR2RML engine usage guidelines Types of DB xrr:query xrr:reference rr:template RDB, Column stores SQL, CQL, HQL Column name Native XML DB XQuery XPath NoSQL doc. Store Proprietary JS-based JSONPath SPARQL endpoint SPARQL Variable name, Column name (s, p, o) Neo4J (graph db) Cypher Column name (s, p, o) LDAP directory LDAP Query Attribute name ... ... ...
  • 18. 18 { "studyid": 10, "acronym": "CAC2010", "centres": [ { "centreid": 4, "name": "Pasteur" }, { "centreid": 6, "name": "Pontchaillou" } ] } xR2RML: multiple values vs. RDF list/container Mapping case: link the study with the centres it involves <http://example.org/study#10> ex:involves “Pasteur”. <http://example.org/study#10> ex:involves “Pontchaillou”. <http://example.org/study#10> ex:involvesCenters ( “Pasteur” “Pontchaillou” )
  • 19. 19 { "studyid": 10, "acronym": "CAC2010", "centres": [ { "centreid": 4, "name": "Pasteur" }, { "centreid": 6, "name": "Pontchaillou" } ] } xR2RML: multiple values vs. RDF list/container Mapping case: link the study with the centres it involves rr:objectMap [ xrr:reference "$.centres.*.name“; rr:termType xrr:RdfList; ]; R2RML term types rr:IRI, rr:Literal, rr:BlankNode xR2RML term types xrr:RdfList, xrr:RdfSeq, xrr:RdfBag, xrr:RdfAlt
  • 20. 20 xR2RML: nested collections From structured values (XML, JSON...): nested collections and key-value associations... ... to RDF:  generate nested lists/containers, qualify members (data type, language tag...) rr:objectMap [ xrr:reference “..."; rr:termType xrr:RdfList; xrr:nestedTermMap [ xrr:reference “..."; rr:termType xrr:RdfList; xrr:nestedTermMap [ rr:datatype xsd:string; ]; ]; ]; ( ( “John”^^xsd:string “Bob”^^xsd:string ) ( “Ted”^^xsd:string “Mark”^^xsd:string ) ) E.g.: produce a list of lists of strings
  • 21. 21 Collection “studies”: { “studyid”: 10, “acronym”: “CAC2010”, “centres”: [ 4, 6 ] } Collection “centres”: { “centreid”: 4, “name”: “Pasteur” }, { “centreid”: 6, “name”: “Pontchaillou”} xR2RML: cross-references <#Centre> xrr:logicalSource [ ... ]; rr:subjectMap [ ... ]. <#Study> xrr:logicalSource [ .. ]; rr:subjectMap [ ... ]; rr:predicateObjectMap [ rr:predicate ex:involvesSeq; rr:objectMap [ rr:parentTriplesMap <#Centre>; rr:joinCondition [ rr:child "$.centres.*"; rr:parent "$.centreid"; ]; rr:termType xrr:RdfSeq; ]; ]. <http://example.org/study#10> ex:involvesSeq [ a rdf:Seq; rdf:_1 <http://example.org/centre#Pasteur>; rdf:_2 <http://example.org/centre#Pontchaillou>; ]. xR2RML mapping graph:MongoDB database: Produced RDF:
  • 22. 22 Collection “studies”: { “studyid”: 10, “acronym”: “CAC2010”, “centres”: [ 4, 6 ] } Collection “centres”: { “centreid”: 4, “name”: “Pasteur” }, { “centreid”: 6, “name”: “Pontchaillou”} xR2RML: cross-references <#Centre> xrr:logicalSource [ ... ]; rr:subjectMap [ ... ]. <#Study> xrr:logicalSource [ .. ]; rr:subjectMap [ ... ]; rr:predicateObjectMap [ rr:predicate ex:involvesSeq; rr:objectMap [ rr:parentTriplesMap <#Centre>; rr:joinCondition [ rr:child "$.centres.*"; rr:parent "$.centreid"; ]; rr:termType xrr:RdfSeq; ]; ]. xR2RML mapping graph:MongoDB database: Joint query pushed to the DB if supported, performed by the xR2RML engine otherwise <http://example.org/study#10> ex:involvesSeq [ a rdf:Seq; rdf:_1 <http://example.org/centre#Pasteur>; rdf:_2 <http://example.org/centre#Pontchaillou>; ]. Produced RDF:
  • 23. 23 <#Centre> xrr:logicalSource [ xrr:sourceName "STAFF"; ]; ... rr:predicateObjectMap [ rr:predicate ex:fist-name; rr:objectMap [ xrr:reference "Column(Name)/JSONPath($.FirstName)" ]; ]; xR2RML: content with mixed formats Data with mixed content Relational table “STAFF”, column “Name” contains JSON data: ... Name ... ... { “FirstName”: “Bob”, “LastName: “Smith” } ... xR2RML mapping graph:
  • 24. 24 <#Centre> xrr:logicalSource [ xrr:sourceName "STAFF"; ]; ... rr:predicateObjectMap [ rr:predicate ex:fist-name; rr:objectMap [ xrr:reference "Column(Name)/JSONPath($.FirstName)" ]; ]; xR2RML: content with mixed formats Data with mixed content Relational table “STAFF”, column “Name” contains JSON data: ... Name ... ... { “FirstName”: “Bob”, “LastName: “Smith” } ... Data format Syntax path constructor Row Column(), CSV(), TSV() XML XPath() JSON JSONPath() ... ... xR2RML mapping graph:
  • 25. 25  Previous works  Background: R2RML and RML  Description of xR2RML main features  Evaluation and perspectives Agenda
  • 26. 26  Use case: study the history and transmission of zoological knowledge along historical periods  TAXREF taxonomical reference • Designed to support studies in Conservation Biology, enriched with bioarchaeological taxa • Maintained the French National Museum of Natural History • ~ 450.000 terms, CSV/JSON/XML Use case in Digital Humanities
  • 27. 27  Ongoing work [2]: Construction of a SKOS1 thesaurus based on TAXREF • Import of TAXREF/JSON into MongoDB • Use of the Morph-xR2RML prototype implementation of xR2RML, to convert the MongoDB data to RDF • Make alignments with existing well-adopted ontologies (e.g. NCBI Taxonomic Classification, GeoNames...) • Static alignments at mapping design time • Using automatic alignment methods Use case in Digital Humanities 1 SKOS: Simple Knowledge Organization System, W3C RDF-based standard to represent controlled vocabularies, taxonomies and thesauri. Bridge the gap between existing KOS and the Semantic Web and Linked Data.
  • 28. 28  Ongoing discussion about the use of xR2RML to support ecology and agronomic studies • Large phenotype databases  Consider the query rewriting approach to support large datasets  How to write xR2RML mappings • Automatic xR2RML mapping generation from data schema (XSD/DTD, JSON schema, JSON-LD...) • Schema mapping • Schema discovery Perspectives
  • 29. 29 Conclusions  Data deluge keeps on ever faster  Data stored in many kinds of DBs  xR2RML: • Flexible language to map most common types of database to RDF • Supports various data models and query languages • Rich features: RDF collections/containers, joins, content with mixed formats  Applied to the construction of a SKOS thesaurus of TAXREF, a taxonomical reference
  • 30. 30 Contacts: Franck Michel Johan Montagnat Catherine Faron-Zucker [2] C. Callou, F. Michel, C. Faron-Zucker, C. Martin, J. Montagnat. Towards a Shared Reference Thesaurus for Studies on History of Zoology, Archaeozoology and Conservation Biology. In SW4SH workshop, ESWC’15. [3] F. Michel, L. Djimenou, C. Faron-Zucker, and J. Montagnat. xR2RML: Non-Relational Databases to RDF Mapping Language. Research report. ISRN I3S/RR 2014-04-FR. http://hal.archives-ouvertes.fr/hal-01066663 https://github.com/frmichel/morph-xr2rml/