SlideShare a Scribd company logo
RML.io
Generating High Quality
Linked Open Data
from Open or Not Data
Anastasia Dimou
Data Science Lab, Ghent University - iMinds
anastasia.dimou@ugent.be
@natadimou
What is the Semantic Web?
The Semantic Web
is the extension of the World Wide Web
Are you the owner of your data?
OR
is the application that hosts your data?
The Semantic Web
is the extension of the World Wide Web
enables sharing content beyond
the boundaries of applications & websites
The Web for humans, thanks to HTML,
is understandable & constant
BUT
is the Web for machines too?
The Semantic Web
is the extension of the World Wide Web
enables sharing content beyond
the boundaries of applications & websites
allows machines to understand the
meaning of hyperlinked information
Semantic Web enabled applications
rely on data represented as Linked Data
What is Linked (Open) Data?
Linked (Open) Data
a standardized way of
expressing the relationships between data
semantically annotated the data
with different vocabularies or ontologies
describe domain-level knowledge
understandable by humans & machines
How is Linked Data published?
Linked (Open) Data
published in the form of RDF datasets
Resource Description Framework (RDF)
is the prevalent data model
for describing Linked (Open) Data
driven by unique identifiers (URIs)
allows establishing a shared meaning
predicate
subject object
How is Linked Data derived
from (semi-)structured data?
How is Linked Data derived
from (semi-)structured data?
id firstname lastname lab city
1 Anastasia Dimou DSLab Ghent
2 Ruben Verborgh DSLab Ghent
3 Erik Mannens DSLab Ghent
Person 1
Data Science
Labworks
“Anastasia Dimou”
locatedDataScience
Lab
Ghent
Person 2
Data Science
Labworks
“Ruben Verborgh”
Person 3
DataScience
Labworks
“Erik Mannens”
Person {id}
{lab}
Assign unique identifiers (URIs)
“{firstname}
{surname}”
http:://ex.
com{id}
http://ex.com
{lab}
“{firstname}
{surname}”
Annotate data relationships with ontologies
http:://ex.
com{id}
http://ex.com
{lab}
“{firstname}
{surname}”
http:://ex.
com{id}
http://ex.com
{lab}
“{firstname}
{surname}”
ex:1 ex:DSLabex:works
“Anastasia Dimou”
ex:locatedex:DSLab ex:Ghent
ex:2 ex:DSLabex:works
“Ruben Verborgh”
ex:3 ex:DSLabex:works
“Erik Mannens”
ex:{id}
ex:{lab}
ex:located
ex:{lab} ex:{city}
sets of triples of a dataset have repetitive patterns
“{firstname}
{surname}”
ex:{id}
ex:{lab}
sets of triples of a dataset have repetitive patterns
“{firstname}
{surname}”
RDF dataset generation tools
rely their implementation on repetitively
applying those patterns to input data
ex:located
ex:{lab} ex:{city}
What are the different
Linked Data Generation approaches?
Linked Data generation approaches
case-specific solutions
OR
format and source specific
R2RML mappings R2RML processor
Data OWNER / PUBLISHER
defines
RDF
DB CSV JSONXML
RDF RDF RDF
RDF Terms (focusing on IRIs) are…
generated independently
disregarding their possible prior definitions
manually replicated
by reconstructing the same URIs (if possible)
manually aligned afterwards
links with other datasets are defined after
the RDF terms are published
Why not a uniform approach?
Uniform and declarative RDF generation
from heterogeneous data sources
mappings processor
Data OWNER / PUBLISHER
defines
RDF
DB CSV JSONXML RDF
RDF Mapping Language (RML)
generic scalable mapping language
for generating and interlinking
RDF data from heterogeneous resources
in an integrable and interoperable fashion
superset of the W3C standardized
R2RML mapping language
http://rml.io
Uniform and declarative RDF generation
from heterogeneous data sources
RML mappings processor
Data OWNER / PUBLISHER
defines
RDF
DB CSV JSONXML RDF
Defining Mappings to generate Linked Data
Retrieving Input Data
Assessing Quality
Generating Metadata
Editing Mappings
Defining Mappings to generate RDF data
Retrieving Input Data
Assessing Quality
Generating Metadata
Editing Mappings
RML describes
how to generated RDF
from structured data
predicate
subject object
Predicate MapSubject
Map
Object
Map
<#TriplesMap>
rr:constant
ex:located
rr:template
“http://ex.com/{lab}”
rr:template
“http://ex.com/{city}”
rr:template
“http://ex.com/{id}”
rr:template
“http://ex.com/{lab}”
<#ResearcherMap>
<#LabMap>
rr:template “{firstname} {surname}”
rr:termType rr:Literal
RDF Mapping Language (RML)
Extraction Module Mapping Module
RML Processor
Defining Mappings to generate Linked Data
Retrieving Input Data
Assessing Quality
Generating Metadata
Editing Mappings
Triples Map
RDF Mapping Language (RML)
Predicate
Object Map
Subject
Map
Predicate
Map
Object Map
RML describes
rules to map any structured data to RDF
RML supports any data independently of
which structure and format they have
where they originally reside
how they are accessed & retrieved
Specifying data
which data form a data input
how to reference data input extracts
Accessing & Retrieving data
data input from original source(s)
Specifying data
which data form a data input
how to reference data input extracts
Accessing & Retrieving data
data input from original source(s)
Triples Map
RDF Mapping Language (RML)
Predicate
Object Map
Subject
Map
Predicate
Map
Object Map
Logical
Source
Support data in Heterogeneous Structures and Formats
tabular-structured
tables in DBs or CSV files …
hierarchical-structured
JSON or XML …
(semi-)structured
HTML …
… … …
rr:template
“http://ex.com/{id}”
rr:template
“http://ex.com/{lab}”
<#ResearcherMap> rr:template “{firstname} {surname}”
rr:termType rr:Literal
id firstname surname lab
1 Anastasia Dimou DSLab
2 Ruben Verborgh DSLab
3 Erik Mannens DSLab
tabular-structured data
rr:constant
ex:located
rr:template
“http://ex.com/
{/labs/lab/short}”
rr:template
“http://ex.com/
{/labs/lab/location/city}”
<#LabMap>
<labs>
<lab>
<short>MMLab</short>
<title>Multimedia Lab</title>
<location>
<city>Ghent</city>
</location>
</lab>
<lab> …. </lab>
…
</labs>
hierarchical-structured data
Triples Map
RDF Mapping Language (RML)
Predicate
Object Map
Subject
Map
Predicate
Map
Object Map
Logical
Source
Reference
Formulation
<labs>
<lab>
<short>MMLab</short>
<title>Multimedia Lab</title>
<location>
<city>Ghent</city>
</location>
</lab>
<lab> …. </lab>
…
</labs>
<#Lab
Logical
Source>
ql:XPath
rr:constant
ex:located
rr:template
“http://ex.com/
{/labs/lab/short}”
rr:template
“http://ex.com/
{/labs/lab/location/city}”
<#LabMap>
Triples Map
RDF Mapping Language (RML)
Predicate
Object Map
Subject
Map
Predicate
Map
Object Map
Logical
Source
Reference
Formulation
iterator
<labs>
<lab>
<short>MMLab</short>
<title>Multimedia Lab</title>
<location>
<city>Ghent</city>
</location>
</lab>
<lab> …. </lab>
…
</labs>
<#Lab
Logical
Source>
ql:XPath
“/labs/lab”
rr:constant
ex:located
rr:template
“http://ex.com/
{/labs/lab/short}”
rr:template
“http://ex.com/
{/labs/lab/location/city}”
<#LabMap>
Specifying data
which data form a data input
how to reference data input extracts
Accessing & Retrieving data
data input from original source(s)
Input
data
Input
data
Input
data
Output
RDF
Mapping
module
RML
Processor
Map
doc
Data
source
Access
interface
Input
data
Input
data
Input
data
Output
RDF
Mapping
module
RML
Processor
Map
doc
Data
source
Access
interface
Data
source
Access
interface
Retrieval
module
Source
description
Support different Locations and Access Interfaces
Local File(s)
Database connectivity
D2RQ
Web source(s) (Web API/service)
DCAT, CSVW, Hydra, VOiD (Dataset)
RDF source(s)
VOiD (Endpoint), SPARQL-SD
Triples Map
RDF Mapping Language (RML)
Predicate
Object Map
Subject
Map
Predicate
Map
Object Map
Logical
Source
Reference
Formulation
iterator
Source
file.xml
WEBAPI
DCAT
XML
data
JSON
data
tabular
data
Output
RDF
Mapping
module
RML
Processor
Map
doc
Data
repo
WEBAPI
Hydra
Data
base
JDBC
D2RQ
Retrieval
module
Source
description
Triple
store
SPARQL
Defining Mappings to generate Linked Data
Retrieving Input Data
Assessing Quality
Generating Metadata
Editing Mappings
http://example.com/
Giddeon_Massie
dbo:Event
"1981-08-27"
xsd:gYear
http://example.com/
Brick_Bronsky
dbo:Event
"1964"
xsd:gYear
http://example.com/
Steve_Meilinger
dbo:Event
"1930-12-12"
xsd:gYear
dbo:birthDate
http://example.com/
Chuck_Bednarik
dbo:Event
"1925-05-01"
xsd:gYear
http://example.com/
Matt_McBride
dbo:Event
"1985-05-23"
xsd:gYear
dbo:birthDate
dbo:birthDate
dbo:birthDate
dbo:birthDate
dbo:birthDate range  xsd:date
dbo:birthDate domain  dbo:Person
http://example.com/
Chuck_Bednarik
dbo:Event
"1925-05-01"
xsd:gYear
dbo:birthDate
Violations
Most frequent violations are
related to how
vocabularies or ontologies
are applied to the data
dbo:birthDate range  xsd:date
dbo:birthDate domain  dbo:Person
http://example.com/
Chuck_Bednarik
dbo:Event
"1925-05-01"
xsd:gYear
dbo:birthDate
RDF DQA with RDFUnit
test-driven data-debugging framework
based on SPARQL-patterns
dbo:birthDate
http://example.com/
Chuck_Bednarik
dbo:Event
"1925-05-01"
xsd:gYear
http://rdfunit.aksw.org
DQA: Dataset Quality Assessment
Adjustments to the dataset
are manually but rarely applied
but not at the root (hard to identify)
are overwritten if a new version of
the original data is mapped & published
violations
DQA
Instead of applying Quality Assessment
to the already published RDF dataset
as part of data consumption
Apply Quality Assessment to the Mappings
that generate the RDF dataset
MQA: Mapping Quality Assessment
discover violations before
they are even generated
specify the origin of the violation
easily apply structural adjustments
to the mappings
sets of triples of a dataset have repetitive patterns
dbo:birthDatehttp://example.com/
{Name}_{Surname}
dbo:Event
“Birth"
xsd:gYear
Mapping languages
formalize patterns into rules
to generate the RDF dataset
from the original data
MQA with RDFUnit over RML
dbo:birthDate
http://example.com/
Chuck_Bednarik
dbo:Person
"1925-05-01"
xsd:date
DEL: <#ObjectMap> rr:datatype xsd:gYear
ADD: <#ObjectMap> rr:datatype xsd:date
data map doc
Mapping
Processor
violations
MDQA
MDQA: Uniform Mapping & Dataset
Quality Assessment
Dataset Vs Mapping Quality Assessment
Dataset Quality Assessment Mapping Quality Assessment
size time size time
DBPedia EN 62M 16h 115K 11s
DBPedia NL 21M 1.5h 53K 6s
DBpedia all 511K 32s
* http://mappings.dbpedia.org/validation
Live update of DBpedia Mapping Quality Assessment results every night! 
Defining Mappings to generate Linked Data
Retrieving Input Data
Assessing Quality
Generating Metadata
Editing Mappings
Metadata
manually defined by
data publishers (person-agents),
rather than produced by
applications (software-agents)
Consider mapping rules to
automatically generate
self-descriptive
provenance and other metadata
W3C standardized Metadata
PROV
provenance information
VoID
expressing RDF dataset metadata
general metadata
structural metadata,
links between datasets
DCAT
describe datasets in data catalogs
Defining Mappings to generate Linked Data
Retrieving Input Data
Assessing Quality
Generating Metadata
Editing Mappings
Semantic Web experts Vs. Data specialists
Modeling Domain Knowledge
as Linked (Open) Data
is not straightforward for
Data Specialists
Data context
is not straightforward for
Semantic Web experts
Semantic Web experts Vs. Data specialists
Data Specialists
should be able to specify the mappings,
modify and extend them at any time
Approaches for Editing Mappings
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 RMLio
Do it on your own - From 3 to 5 Star Linked Open Data with RMLio
RML Editor
http://rml.io/RMLeditor
Defining Mappings to generate Linked Data
Retrieving Input Data
Assessing Quality
Generating Metadata
Editing Mappings
The five stars of the Linked Open Data scheme
should not be approached as a set of
consecutive steps
Well-considered policy regarding
mapping and interlinking of data
in the context of a certain
knowledge domain
RML.io
Generating High Quality
Linked Open Data
from Open or Not Data
Anastasia Dimou
Data Science Lab, Ghent University - iMinds
anastasia.dimou@ugent.be
@natadimou
Ad

More Related Content

What's hot (20)

A Semantic Data Model for Web Applications
A Semantic Data Model for Web ApplicationsA Semantic Data Model for Web Applications
A Semantic Data Model for Web Applications
Armin Haller
 
Knowledge discoverylaurahollink
Knowledge discoverylaurahollinkKnowledge discoverylaurahollink
Knowledge discoverylaurahollink
SSSW
 
The Power of Semantic Technologies to Explore Linked Open Data
The Power of Semantic Technologies to Explore Linked Open DataThe Power of Semantic Technologies to Explore Linked Open Data
The Power of Semantic Technologies to Explore Linked Open Data
Ontotext
 
SSSW2015 Data Workflow Tutorial
SSSW2015 Data Workflow TutorialSSSW2015 Data Workflow Tutorial
SSSW2015 Data Workflow Tutorial
SSSW
 
The Nature.com ontologies portal - Linked Science 2015
The Nature.com ontologies portal - Linked Science 2015The Nature.com ontologies portal - Linked Science 2015
The Nature.com ontologies portal - Linked Science 2015
Michele Pasin
 
Linked data-tooling-xml
Linked data-tooling-xmlLinked data-tooling-xml
Linked data-tooling-xml
Felix Sasaki
 
ISWC 2014 - Dandelion: from raw data to dataGEMs for developers
ISWC 2014 - Dandelion: from raw data to dataGEMs for developersISWC 2014 - Dandelion: from raw data to dataGEMs for developers
ISWC 2014 - Dandelion: from raw data to dataGEMs for developers
SpazioDati
 
Data Curation @ SpazioDati - NEXA Lunch Seminar
Data Curation @ SpazioDati - NEXA Lunch SeminarData Curation @ SpazioDati - NEXA Lunch Seminar
Data Curation @ SpazioDati - NEXA Lunch Seminar
SpazioDati
 
Session 03 acquiring data
Session 03 acquiring dataSession 03 acquiring data
Session 03 acquiring data
bodaceacat
 
Why is JSON-LD Important to Businesses - Franz Inc
Why is JSON-LD Important to Businesses - Franz IncWhy is JSON-LD Important to Businesses - Franz Inc
Why is JSON-LD Important to Businesses - Franz Inc
Franz Inc. - AllegroGraph
 
First Steps in Semantic Data Modelling and Search & Analytics in the Cloud
First Steps in Semantic Data Modelling and Search & Analytics in the CloudFirst Steps in Semantic Data Modelling and Search & Analytics in the Cloud
First Steps in Semantic Data Modelling and Search & Analytics in the Cloud
Ontotext
 
Linked data tooling XML
Linked data tooling XMLLinked data tooling XML
Linked data tooling XML
FREMEProjectH2020
 
Semantic Technologies: Representing Semantic Data
Semantic Technologies: Representing Semantic DataSemantic Technologies: Representing Semantic Data
Semantic Technologies: Representing Semantic Data
Matthew Rowe
 
Using the whole web as your dataset
Using the whole web as your datasetUsing the whole web as your dataset
Using the whole web as your dataset
Turi, Inc.
 
The Power of Machine Learning and Graphs
The Power of Machine Learning and GraphsThe Power of Machine Learning and Graphs
The Power of Machine Learning and Graphs
Franz Inc. - AllegroGraph
 
Data Integration And Visualization
Data Integration And VisualizationData Integration And Visualization
Data Integration And Visualization
Ivan Ermilov
 
Analytics and Access to the UK web archive
Analytics and Access to the UK web archiveAnalytics and Access to the UK web archive
Analytics and Access to the UK web archive
Lewis Crawford
 
ODI Summit 2016 - Linked Open Data at Springer Nature
ODI Summit 2016 - Linked Open Data at Springer NatureODI Summit 2016 - Linked Open Data at Springer Nature
ODI Summit 2016 - Linked Open Data at Springer Nature
Michele Pasin
 
Emerging technologies in academic libraries
Emerging technologies in academic librariesEmerging technologies in academic libraries
Emerging technologies in academic libraries
Michael Cummings
 
The Bounties of Semantic Data Integration for the Enterprise
The Bounties of Semantic Data Integration for the Enterprise The Bounties of Semantic Data Integration for the Enterprise
The Bounties of Semantic Data Integration for the Enterprise
Ontotext
 
A Semantic Data Model for Web Applications
A Semantic Data Model for Web ApplicationsA Semantic Data Model for Web Applications
A Semantic Data Model for Web Applications
Armin Haller
 
Knowledge discoverylaurahollink
Knowledge discoverylaurahollinkKnowledge discoverylaurahollink
Knowledge discoverylaurahollink
SSSW
 
The Power of Semantic Technologies to Explore Linked Open Data
The Power of Semantic Technologies to Explore Linked Open DataThe Power of Semantic Technologies to Explore Linked Open Data
The Power of Semantic Technologies to Explore Linked Open Data
Ontotext
 
SSSW2015 Data Workflow Tutorial
SSSW2015 Data Workflow TutorialSSSW2015 Data Workflow Tutorial
SSSW2015 Data Workflow Tutorial
SSSW
 
The Nature.com ontologies portal - Linked Science 2015
The Nature.com ontologies portal - Linked Science 2015The Nature.com ontologies portal - Linked Science 2015
The Nature.com ontologies portal - Linked Science 2015
Michele Pasin
 
Linked data-tooling-xml
Linked data-tooling-xmlLinked data-tooling-xml
Linked data-tooling-xml
Felix Sasaki
 
ISWC 2014 - Dandelion: from raw data to dataGEMs for developers
ISWC 2014 - Dandelion: from raw data to dataGEMs for developersISWC 2014 - Dandelion: from raw data to dataGEMs for developers
ISWC 2014 - Dandelion: from raw data to dataGEMs for developers
SpazioDati
 
Data Curation @ SpazioDati - NEXA Lunch Seminar
Data Curation @ SpazioDati - NEXA Lunch SeminarData Curation @ SpazioDati - NEXA Lunch Seminar
Data Curation @ SpazioDati - NEXA Lunch Seminar
SpazioDati
 
Session 03 acquiring data
Session 03 acquiring dataSession 03 acquiring data
Session 03 acquiring data
bodaceacat
 
Why is JSON-LD Important to Businesses - Franz Inc
Why is JSON-LD Important to Businesses - Franz IncWhy is JSON-LD Important to Businesses - Franz Inc
Why is JSON-LD Important to Businesses - Franz Inc
Franz Inc. - AllegroGraph
 
First Steps in Semantic Data Modelling and Search & Analytics in the Cloud
First Steps in Semantic Data Modelling and Search & Analytics in the CloudFirst Steps in Semantic Data Modelling and Search & Analytics in the Cloud
First Steps in Semantic Data Modelling and Search & Analytics in the Cloud
Ontotext
 
Semantic Technologies: Representing Semantic Data
Semantic Technologies: Representing Semantic DataSemantic Technologies: Representing Semantic Data
Semantic Technologies: Representing Semantic Data
Matthew Rowe
 
Using the whole web as your dataset
Using the whole web as your datasetUsing the whole web as your dataset
Using the whole web as your dataset
Turi, Inc.
 
Data Integration And Visualization
Data Integration And VisualizationData Integration And Visualization
Data Integration And Visualization
Ivan Ermilov
 
Analytics and Access to the UK web archive
Analytics and Access to the UK web archiveAnalytics and Access to the UK web archive
Analytics and Access to the UK web archive
Lewis Crawford
 
ODI Summit 2016 - Linked Open Data at Springer Nature
ODI Summit 2016 - Linked Open Data at Springer NatureODI Summit 2016 - Linked Open Data at Springer Nature
ODI Summit 2016 - Linked Open Data at Springer Nature
Michele Pasin
 
Emerging technologies in academic libraries
Emerging technologies in academic librariesEmerging technologies in academic libraries
Emerging technologies in academic libraries
Michael Cummings
 
The Bounties of Semantic Data Integration for the Enterprise
The Bounties of Semantic Data Integration for the Enterprise The Bounties of Semantic Data Integration for the Enterprise
The Bounties of Semantic Data Integration for the Enterprise
Ontotext
 

Viewers also liked (20)

#OpenTourism - Linked Open Data publishing and discovery workshop
#OpenTourism - Linked Open Data publishing and discovery workshop#OpenTourism - Linked Open Data publishing and discovery workshop
#OpenTourism - Linked Open Data publishing and discovery workshop
Open Knowledge Belgium
 
Local decisions as Linked Open Data #LBLOD
Local decisions as Linked Open Data #LBLODLocal decisions as Linked Open Data #LBLOD
Local decisions as Linked Open Data #LBLOD
Open Knowledge Belgium
 
DCAT: a tale of exchanging metadata
DCAT: a tale of exchanging metadataDCAT: a tale of exchanging metadata
DCAT: a tale of exchanging metadata
Open Knowledge Belgium
 
Open Data: What’s Next?
Open Data: What’s Next?Open Data: What’s Next?
Open Data: What’s Next?
Open Knowledge Belgium
 
בריאות הציבור
בריאות הציבורבריאות הציבור
בריאות הציבור
dannydoron
 
Zaragoza turismo-60
Zaragoza turismo-60Zaragoza turismo-60
Zaragoza turismo-60
Saucepolis blog & Hotel Sauce
 
Zaragoza turismo 215
Zaragoza turismo 215Zaragoza turismo 215
Zaragoza turismo 215
Saucepolis blog & Hotel Sauce
 
Letter to my great-grandfather on his 18th birthday
Letter to my great-grandfather on his 18th birthdayLetter to my great-grandfather on his 18th birthday
Letter to my great-grandfather on his 18th birthday
Ross Mayfield
 
7 Tips for Design Teams Collaborating Remotely
7 Tips for Design Teams Collaborating Remotely7 Tips for Design Teams Collaborating Remotely
7 Tips for Design Teams Collaborating Remotely
Framebench
 
Je Suis Charlie
Je Suis CharlieJe Suis Charlie
Je Suis Charlie
guimera
 
DigitalShoreditch: The gamification of customer service
DigitalShoreditch: The gamification of customer serviceDigitalShoreditch: The gamification of customer service
DigitalShoreditch: The gamification of customer service
Guy Stephens | @guy1067
 
EPA DROE Email 6.30.03
EPA DROE Email 6.30.03EPA DROE Email 6.30.03
EPA DROE Email 6.30.03
Obama White House
 
quality control of food and drugs
quality control of food and drugsquality control of food and drugs
quality control of food and drugs
CIVIL SURGEON OFFICE FARIDKOT
 
Ivan chakarov-2015.eng-1
Ivan chakarov-2015.eng-1Ivan chakarov-2015.eng-1
Ivan chakarov-2015.eng-1
Sim Aleksiev
 
Votre Entreprise sur Facebook... Pour quoi faire?
Votre Entreprise sur Facebook... Pour quoi faire?Votre Entreprise sur Facebook... Pour quoi faire?
Votre Entreprise sur Facebook... Pour quoi faire?
Post Planner
 
九個月的紐西蘭
九個月的紐西蘭九個月的紐西蘭
九個月的紐西蘭
honan4108
 
Zaragoza turismo 211
Zaragoza turismo 211Zaragoza turismo 211
Zaragoza turismo 211
Saucepolis blog & Hotel Sauce
 
анализ рынка приложений в социальных сетях
анализ рынка приложений в социальных сетях анализ рынка приложений в социальных сетях
анализ рынка приложений в социальных сетях
Dmitriy Plekhanov
 
Experience Design + The Digital Agency (Phizzpop version)
Experience Design + The Digital Agency (Phizzpop version)Experience Design + The Digital Agency (Phizzpop version)
Experience Design + The Digital Agency (Phizzpop version)
David Armano
 
梯田上的音符 哈尼
梯田上的音符 哈尼梯田上的音符 哈尼
梯田上的音符 哈尼
honan4108
 
#OpenTourism - Linked Open Data publishing and discovery workshop
#OpenTourism - Linked Open Data publishing and discovery workshop#OpenTourism - Linked Open Data publishing and discovery workshop
#OpenTourism - Linked Open Data publishing and discovery workshop
Open Knowledge Belgium
 
Local decisions as Linked Open Data #LBLOD
Local decisions as Linked Open Data #LBLODLocal decisions as Linked Open Data #LBLOD
Local decisions as Linked Open Data #LBLOD
Open Knowledge Belgium
 
בריאות הציבור
בריאות הציבורבריאות הציבור
בריאות הציבור
dannydoron
 
Letter to my great-grandfather on his 18th birthday
Letter to my great-grandfather on his 18th birthdayLetter to my great-grandfather on his 18th birthday
Letter to my great-grandfather on his 18th birthday
Ross Mayfield
 
7 Tips for Design Teams Collaborating Remotely
7 Tips for Design Teams Collaborating Remotely7 Tips for Design Teams Collaborating Remotely
7 Tips for Design Teams Collaborating Remotely
Framebench
 
Je Suis Charlie
Je Suis CharlieJe Suis Charlie
Je Suis Charlie
guimera
 
DigitalShoreditch: The gamification of customer service
DigitalShoreditch: The gamification of customer serviceDigitalShoreditch: The gamification of customer service
DigitalShoreditch: The gamification of customer service
Guy Stephens | @guy1067
 
Ivan chakarov-2015.eng-1
Ivan chakarov-2015.eng-1Ivan chakarov-2015.eng-1
Ivan chakarov-2015.eng-1
Sim Aleksiev
 
Votre Entreprise sur Facebook... Pour quoi faire?
Votre Entreprise sur Facebook... Pour quoi faire?Votre Entreprise sur Facebook... Pour quoi faire?
Votre Entreprise sur Facebook... Pour quoi faire?
Post Planner
 
九個月的紐西蘭
九個月的紐西蘭九個月的紐西蘭
九個月的紐西蘭
honan4108
 
анализ рынка приложений в социальных сетях
анализ рынка приложений в социальных сетях анализ рынка приложений в социальных сетях
анализ рынка приложений в социальных сетях
Dmitriy Plekhanov
 
Experience Design + The Digital Agency (Phizzpop version)
Experience Design + The Digital Agency (Phizzpop version)Experience Design + The Digital Agency (Phizzpop version)
Experience Design + The Digital Agency (Phizzpop version)
David Armano
 
梯田上的音符 哈尼
梯田上的音符 哈尼梯田上的音符 哈尼
梯田上的音符 哈尼
honan4108
 
Ad

Similar to Do it on your own - From 3 to 5 Star Linked Open Data with RMLio (20)

Machine-Interpretable Dataset and Service Descriptions for Heterogeneous Data...
Machine-Interpretable Dataset and Service Descriptions for Heterogeneous Data...Machine-Interpretable Dataset and Service Descriptions for Heterogeneous Data...
Machine-Interpretable Dataset and Service Descriptions for Heterogeneous Data...
andimou
 
Triplestore and SPARQL
Triplestore and SPARQLTriplestore and SPARQL
Triplestore and SPARQL
Lino Valdivia
 
Understanding RDF: the Resource Description Framework in Context (1999)
Understanding RDF: the Resource Description Framework in Context  (1999)Understanding RDF: the Resource Description Framework in Context  (1999)
Understanding RDF: the Resource Description Framework in Context (1999)
Dan Brickley
 
SWT Lecture Session 2 - RDF
SWT Lecture Session 2 - RDFSWT Lecture Session 2 - RDF
SWT Lecture Session 2 - RDF
Mariano Rodriguez-Muro
 
State of the Semantic Web
State of the Semantic WebState of the Semantic Web
State of the Semantic Web
Ivan Herman
 
CSHALS 2010 W3C Semanic Web Tutorial
CSHALS 2010 W3C Semanic Web TutorialCSHALS 2010 W3C Semanic Web Tutorial
CSHALS 2010 W3C Semanic Web Tutorial
LeeFeigenbaum
 
Linked data HHS 2015
Linked data HHS 2015Linked data HHS 2015
Linked data HHS 2015
Cason Snow
 
Explicit Semantics in Graph DBs Driving Digital Transformation With Neo4j
Explicit Semantics in Graph DBs Driving Digital Transformation With Neo4jExplicit Semantics in Graph DBs Driving Digital Transformation With Neo4j
Explicit Semantics in Graph DBs Driving Digital Transformation With Neo4j
Connected Data World
 
The web of interlinked data and knowledge stripped
The web of interlinked data and knowledge strippedThe web of interlinked data and knowledge stripped
The web of interlinked data and knowledge stripped
Sören Auer
 
Linked Data Tutorial
Linked Data TutorialLinked Data Tutorial
Linked Data Tutorial
Sören Auer
 
#opentourism - Linked Open Data Publishing and Discovery Workshop
#opentourism - Linked Open Data Publishing and Discovery Workshop#opentourism - Linked Open Data Publishing and Discovery Workshop
#opentourism - Linked Open Data Publishing and Discovery Workshop
Raf Buyle
 
SemanticdddddddddddddddddddddddddddddddddeeeWeb.ppt
SemanticdddddddddddddddddddddddddddddddddeeeWeb.pptSemanticdddddddddddddddddddddddddddddddddeeeWeb.ppt
SemanticdddddddddddddddddddddddddddddddddeeeWeb.ppt
testaccount387216
 
Linked Data
Linked DataLinked Data
Linked Data
cyriacsmail
 
Structured Dynamics' Semantic Technologies Product Stack
Structured Dynamics' Semantic Technologies Product StackStructured Dynamics' Semantic Technologies Product Stack
Structured Dynamics' Semantic Technologies Product Stack
Mike Bergman
 
Analysis on semantic web layer cake entities
Analysis on semantic web layer cake entitiesAnalysis on semantic web layer cake entities
Analysis on semantic web layer cake entities
తేజ దండిభట్ల
 
Deploying PHP applications using Virtuoso as Application Server
Deploying PHP applications using Virtuoso as Application ServerDeploying PHP applications using Virtuoso as Application Server
Deploying PHP applications using Virtuoso as Application Server
webhostingguy
 
Enterprise knowledge graphs
Enterprise knowledge graphsEnterprise knowledge graphs
Enterprise knowledge graphs
Sören Auer
 
What Factors Influence the Design of a Linked Data Generation Algorithm?
What Factors Influence the Design of a Linked Data Generation Algorithm?What Factors Influence the Design of a Linked Data Generation Algorithm?
What Factors Influence the Design of a Linked Data Generation Algorithm?
andimou
 
SemanticWeb Nuts 'n Bolts
SemanticWeb Nuts 'n BoltsSemanticWeb Nuts 'n Bolts
SemanticWeb Nuts 'n Bolts
Rinke Hoekstra
 
Danbri Drupalcon Export
Danbri Drupalcon ExportDanbri Drupalcon Export
Danbri Drupalcon Export
Drupalcon Paris
 
Machine-Interpretable Dataset and Service Descriptions for Heterogeneous Data...
Machine-Interpretable Dataset and Service Descriptions for Heterogeneous Data...Machine-Interpretable Dataset and Service Descriptions for Heterogeneous Data...
Machine-Interpretable Dataset and Service Descriptions for Heterogeneous Data...
andimou
 
Triplestore and SPARQL
Triplestore and SPARQLTriplestore and SPARQL
Triplestore and SPARQL
Lino Valdivia
 
Understanding RDF: the Resource Description Framework in Context (1999)
Understanding RDF: the Resource Description Framework in Context  (1999)Understanding RDF: the Resource Description Framework in Context  (1999)
Understanding RDF: the Resource Description Framework in Context (1999)
Dan Brickley
 
State of the Semantic Web
State of the Semantic WebState of the Semantic Web
State of the Semantic Web
Ivan Herman
 
CSHALS 2010 W3C Semanic Web Tutorial
CSHALS 2010 W3C Semanic Web TutorialCSHALS 2010 W3C Semanic Web Tutorial
CSHALS 2010 W3C Semanic Web Tutorial
LeeFeigenbaum
 
Linked data HHS 2015
Linked data HHS 2015Linked data HHS 2015
Linked data HHS 2015
Cason Snow
 
Explicit Semantics in Graph DBs Driving Digital Transformation With Neo4j
Explicit Semantics in Graph DBs Driving Digital Transformation With Neo4jExplicit Semantics in Graph DBs Driving Digital Transformation With Neo4j
Explicit Semantics in Graph DBs Driving Digital Transformation With Neo4j
Connected Data World
 
The web of interlinked data and knowledge stripped
The web of interlinked data and knowledge strippedThe web of interlinked data and knowledge stripped
The web of interlinked data and knowledge stripped
Sören Auer
 
Linked Data Tutorial
Linked Data TutorialLinked Data Tutorial
Linked Data Tutorial
Sören Auer
 
#opentourism - Linked Open Data Publishing and Discovery Workshop
#opentourism - Linked Open Data Publishing and Discovery Workshop#opentourism - Linked Open Data Publishing and Discovery Workshop
#opentourism - Linked Open Data Publishing and Discovery Workshop
Raf Buyle
 
SemanticdddddddddddddddddddddddddddddddddeeeWeb.ppt
SemanticdddddddddddddddddddddddddddddddddeeeWeb.pptSemanticdddddddddddddddddddddddddddddddddeeeWeb.ppt
SemanticdddddddddddddddddddddddddddddddddeeeWeb.ppt
testaccount387216
 
Structured Dynamics' Semantic Technologies Product Stack
Structured Dynamics' Semantic Technologies Product StackStructured Dynamics' Semantic Technologies Product Stack
Structured Dynamics' Semantic Technologies Product Stack
Mike Bergman
 
Deploying PHP applications using Virtuoso as Application Server
Deploying PHP applications using Virtuoso as Application ServerDeploying PHP applications using Virtuoso as Application Server
Deploying PHP applications using Virtuoso as Application Server
webhostingguy
 
Enterprise knowledge graphs
Enterprise knowledge graphsEnterprise knowledge graphs
Enterprise knowledge graphs
Sören Auer
 
What Factors Influence the Design of a Linked Data Generation Algorithm?
What Factors Influence the Design of a Linked Data Generation Algorithm?What Factors Influence the Design of a Linked Data Generation Algorithm?
What Factors Influence the Design of a Linked Data Generation Algorithm?
andimou
 
SemanticWeb Nuts 'n Bolts
SemanticWeb Nuts 'n BoltsSemanticWeb Nuts 'n Bolts
SemanticWeb Nuts 'n Bolts
Rinke Hoekstra
 
Ad

More from Open Knowledge Belgium (20)

Open Data Stories You haven't heard!
Open Data Stories You haven't heard!Open Data Stories You haven't heard!
Open Data Stories You haven't heard!
Open Knowledge Belgium
 
A​ FUNUMENTARY:​ Take what you can, give nothing back...​ ​(NOT)
A​ FUNUMENTARY:​ Take what you can, give nothing back...​ ​(NOT)A​ FUNUMENTARY:​ Take what you can, give nothing back...​ ​(NOT)
A​ FUNUMENTARY:​ Take what you can, give nothing back...​ ​(NOT)
Open Knowledge Belgium
 
Smarter by Open Data: Process and Practice in Flevoland (NL)
Smarter by Open Data: Process and Practice in Flevoland (NL)Smarter by Open Data: Process and Practice in Flevoland (NL)
Smarter by Open Data: Process and Practice in Flevoland (NL)
Open Knowledge Belgium
 
Open Knowledge for Social Innovation
Open Knowledge for Social InnovationOpen Knowledge for Social Innovation
Open Knowledge for Social Innovation
Open Knowledge Belgium
 
Smart Flanders: Tackling urban challenges through Open Data
Smart Flanders: Tackling urban challenges through Open DataSmart Flanders: Tackling urban challenges through Open Data
Smart Flanders: Tackling urban challenges through Open Data
Open Knowledge Belgium
 
EIF and NIFO connecting public administrations, businesses, and citizens
EIF and NIFO connecting public administrations, businesses, and citizensEIF and NIFO connecting public administrations, businesses, and citizens
EIF and NIFO connecting public administrations, businesses, and citizens
Open Knowledge Belgium
 
Connecting Open data for solving the fiscal transparency puzzle in the EU
Connecting Open data for solving the fiscal transparency puzzle in the EUConnecting Open data for solving the fiscal transparency puzzle in the EU
Connecting Open data for solving the fiscal transparency puzzle in the EU
Open Knowledge Belgium
 
Open Government and Networked European Democracy
Open Government and Networked European DemocracyOpen Government and Networked European Democracy
Open Government and Networked European Democracy
Open Knowledge Belgium
 
Mundaneum Factories for Open Tokenomics
Mundaneum Factories for Open TokenomicsMundaneum Factories for Open Tokenomics
Mundaneum Factories for Open Tokenomics
Open Knowledge Belgium
 
MIRVA: The European Open Recognition Project
MIRVA: The European Open Recognition ProjectMIRVA: The European Open Recognition Project
MIRVA: The European Open Recognition Project
Open Knowledge Belgium
 
Bike for Brussels - Open Summer of Code 2017
Bike for Brussels - Open Summer of Code 2017Bike for Brussels - Open Summer of Code 2017
Bike for Brussels - Open Summer of Code 2017
Open Knowledge Belgium
 
The story behind SNCB alerts
The story behind SNCB alertsThe story behind SNCB alerts
The story behind SNCB alerts
Open Knowledge Belgium
 
Traffic safety - answering tough questions with open data
Traffic safety - answering tough questions with open dataTraffic safety - answering tough questions with open data
Traffic safety - answering tough questions with open data
Open Knowledge Belgium
 
Eliminating data roadbloacks to get by traffic roadblocks without pain
Eliminating data roadbloacks to get by traffic roadblocks without painEliminating data roadbloacks to get by traffic roadblocks without pain
Eliminating data roadbloacks to get by traffic roadblocks without pain
Open Knowledge Belgium
 
Linked Open Data in limbo: Open cultural heritage resources
Linked Open Data in limbo: Open cultural heritage resourcesLinked Open Data in limbo: Open cultural heritage resources
Linked Open Data in limbo: Open cultural heritage resources
Open Knowledge Belgium
 
A journey to Linked Open Touristic Data
A journey to Linked Open Touristic DataA journey to Linked Open Touristic Data
A journey to Linked Open Touristic Data
Open Knowledge Belgium
 
How we use the massive open lidar dataset for the benfit of our clients
How we use the massive open lidar dataset for the benfit of our clientsHow we use the massive open lidar dataset for the benfit of our clients
How we use the massive open lidar dataset for the benfit of our clients
Open Knowledge Belgium
 
mu.semte.ch: A transitional architecture for Linked Data
mu.semte.ch: A transitional architecture for Linked Datamu.semte.ch: A transitional architecture for Linked Data
mu.semte.ch: A transitional architecture for Linked Data
Open Knowledge Belgium
 
Linked Open Chatbots
Linked Open ChatbotsLinked Open Chatbots
Linked Open Chatbots
Open Knowledge Belgium
 
The role and value of making data inventories
The role and value of making data inventoriesThe role and value of making data inventories
The role and value of making data inventories
Open Knowledge Belgium
 
A​ FUNUMENTARY:​ Take what you can, give nothing back...​ ​(NOT)
A​ FUNUMENTARY:​ Take what you can, give nothing back...​ ​(NOT)A​ FUNUMENTARY:​ Take what you can, give nothing back...​ ​(NOT)
A​ FUNUMENTARY:​ Take what you can, give nothing back...​ ​(NOT)
Open Knowledge Belgium
 
Smarter by Open Data: Process and Practice in Flevoland (NL)
Smarter by Open Data: Process and Practice in Flevoland (NL)Smarter by Open Data: Process and Practice in Flevoland (NL)
Smarter by Open Data: Process and Practice in Flevoland (NL)
Open Knowledge Belgium
 
Smart Flanders: Tackling urban challenges through Open Data
Smart Flanders: Tackling urban challenges through Open DataSmart Flanders: Tackling urban challenges through Open Data
Smart Flanders: Tackling urban challenges through Open Data
Open Knowledge Belgium
 
EIF and NIFO connecting public administrations, businesses, and citizens
EIF and NIFO connecting public administrations, businesses, and citizensEIF and NIFO connecting public administrations, businesses, and citizens
EIF and NIFO connecting public administrations, businesses, and citizens
Open Knowledge Belgium
 
Connecting Open data for solving the fiscal transparency puzzle in the EU
Connecting Open data for solving the fiscal transparency puzzle in the EUConnecting Open data for solving the fiscal transparency puzzle in the EU
Connecting Open data for solving the fiscal transparency puzzle in the EU
Open Knowledge Belgium
 
Open Government and Networked European Democracy
Open Government and Networked European DemocracyOpen Government and Networked European Democracy
Open Government and Networked European Democracy
Open Knowledge Belgium
 
Mundaneum Factories for Open Tokenomics
Mundaneum Factories for Open TokenomicsMundaneum Factories for Open Tokenomics
Mundaneum Factories for Open Tokenomics
Open Knowledge Belgium
 
MIRVA: The European Open Recognition Project
MIRVA: The European Open Recognition ProjectMIRVA: The European Open Recognition Project
MIRVA: The European Open Recognition Project
Open Knowledge Belgium
 
Bike for Brussels - Open Summer of Code 2017
Bike for Brussels - Open Summer of Code 2017Bike for Brussels - Open Summer of Code 2017
Bike for Brussels - Open Summer of Code 2017
Open Knowledge Belgium
 
Traffic safety - answering tough questions with open data
Traffic safety - answering tough questions with open dataTraffic safety - answering tough questions with open data
Traffic safety - answering tough questions with open data
Open Knowledge Belgium
 
Eliminating data roadbloacks to get by traffic roadblocks without pain
Eliminating data roadbloacks to get by traffic roadblocks without painEliminating data roadbloacks to get by traffic roadblocks without pain
Eliminating data roadbloacks to get by traffic roadblocks without pain
Open Knowledge Belgium
 
Linked Open Data in limbo: Open cultural heritage resources
Linked Open Data in limbo: Open cultural heritage resourcesLinked Open Data in limbo: Open cultural heritage resources
Linked Open Data in limbo: Open cultural heritage resources
Open Knowledge Belgium
 
A journey to Linked Open Touristic Data
A journey to Linked Open Touristic DataA journey to Linked Open Touristic Data
A journey to Linked Open Touristic Data
Open Knowledge Belgium
 
How we use the massive open lidar dataset for the benfit of our clients
How we use the massive open lidar dataset for the benfit of our clientsHow we use the massive open lidar dataset for the benfit of our clients
How we use the massive open lidar dataset for the benfit of our clients
Open Knowledge Belgium
 
mu.semte.ch: A transitional architecture for Linked Data
mu.semte.ch: A transitional architecture for Linked Datamu.semte.ch: A transitional architecture for Linked Data
mu.semte.ch: A transitional architecture for Linked Data
Open Knowledge Belgium
 
The role and value of making data inventories
The role and value of making data inventoriesThe role and value of making data inventories
The role and value of making data inventories
Open Knowledge Belgium
 

Recently uploaded (20)

stackconf 2025 | Zap the Flakes! Leveraging AI to Combat Flaky Tests with CAN...
stackconf 2025 | Zap the Flakes! Leveraging AI to Combat Flaky Tests with CAN...stackconf 2025 | Zap the Flakes! Leveraging AI to Combat Flaky Tests with CAN...
stackconf 2025 | Zap the Flakes! Leveraging AI to Combat Flaky Tests with CAN...
NETWAYS
 
Microsoft Azure Data Fundamentals (DP-900) Exam Dumps & Questions 2025.pdf
Microsoft Azure Data Fundamentals (DP-900) Exam Dumps & Questions 2025.pdfMicrosoft Azure Data Fundamentals (DP-900) Exam Dumps & Questions 2025.pdf
Microsoft Azure Data Fundamentals (DP-900) Exam Dumps & Questions 2025.pdf
MinniePfeiffer
 
Wood Age and Trees of life - talk at Newcastle City Library
Wood Age and Trees of life - talk at Newcastle City LibraryWood Age and Trees of life - talk at Newcastle City Library
Wood Age and Trees of life - talk at Newcastle City Library
Woods for the Trees
 
Bloom Where You Are Planted 05.04.2025.pptx
Bloom Where You Are Planted 05.04.2025.pptxBloom Where You Are Planted 05.04.2025.pptx
Bloom Where You Are Planted 05.04.2025.pptx
FamilyWorshipCenterD
 
2. Asexual propagation of fruit crops and .pptx
2. Asexual propagation of fruit crops and .pptx2. Asexual propagation of fruit crops and .pptx
2. Asexual propagation of fruit crops and .pptx
aschenakidawit1
 
fundamentals of communicationclass notes.pptx
fundamentals of communicationclass notes.pptxfundamentals of communicationclass notes.pptx
fundamentals of communicationclass notes.pptx
Sunkod
 
stackconf 2025 | How NVMe over TCP runs PostgreSQL in Quicksilver mode! by Sa...
stackconf 2025 | How NVMe over TCP runs PostgreSQL in Quicksilver mode! by Sa...stackconf 2025 | How NVMe over TCP runs PostgreSQL in Quicksilver mode! by Sa...
stackconf 2025 | How NVMe over TCP runs PostgreSQL in Quicksilver mode! by Sa...
NETWAYS
 
Platform Engineering >> Platform Product Management.pptx
Platform Engineering  >>  Platform Product Management.pptxPlatform Engineering  >>  Platform Product Management.pptx
Platform Engineering >> Platform Product Management.pptx
noelorona
 
Bidding World Conference 2027 - Ghana.pptx
Bidding World Conference 2027 - Ghana.pptxBidding World Conference 2027 - Ghana.pptx
Bidding World Conference 2027 - Ghana.pptx
ISGF - International Scout and Guide Fellowship
 
stackconf 2025 | Detect & Respond to Threats in Kubernetes with Falco by Luca...
stackconf 2025 | Detect & Respond to Threats in Kubernetes with Falco by Luca...stackconf 2025 | Detect & Respond to Threats in Kubernetes with Falco by Luca...
stackconf 2025 | Detect & Respond to Threats in Kubernetes with Falco by Luca...
NETWAYS
 
stackconf 2025 | IP Authentication: A Tale of Performance Pitfalls and Challe...
stackconf 2025 | IP Authentication: A Tale of Performance Pitfalls and Challe...stackconf 2025 | IP Authentication: A Tale of Performance Pitfalls and Challe...
stackconf 2025 | IP Authentication: A Tale of Performance Pitfalls and Challe...
NETWAYS
 
stackconf 2025 | Stratoshark: Bringing the Wireshark experience to cloud and ...
stackconf 2025 | Stratoshark: Bringing the Wireshark experience to cloud and ...stackconf 2025 | Stratoshark: Bringing the Wireshark experience to cloud and ...
stackconf 2025 | Stratoshark: Bringing the Wireshark experience to cloud and ...
NETWAYS
 
Bidding World Conference 2027-NSGF Senegal.pdf
Bidding World Conference 2027-NSGF Senegal.pdfBidding World Conference 2027-NSGF Senegal.pdf
Bidding World Conference 2027-NSGF Senegal.pdf
ISGF - International Scout and Guide Fellowship
 
stackconf 2025 | The Power of Small Habits in Agile Teams by Maroš Kutschy.pdf
stackconf 2025 | The Power of Small Habits in Agile Teams by Maroš Kutschy.pdfstackconf 2025 | The Power of Small Habits in Agile Teams by Maroš Kutschy.pdf
stackconf 2025 | The Power of Small Habits in Agile Teams by Maroš Kutschy.pdf
NETWAYS
 
stackconf 2025 | The Sustainable Infrastructure of the future by Alessandro V...
stackconf 2025 | The Sustainable Infrastructure of the future by Alessandro V...stackconf 2025 | The Sustainable Infrastructure of the future by Alessandro V...
stackconf 2025 | The Sustainable Infrastructure of the future by Alessandro V...
NETWAYS
 
THE SEXUAL HARASSMENT OF WOMAN AT WORKPLACE (PREVENTION, PROHIBITION & REDRES...
THE SEXUAL HARASSMENT OF WOMAN AT WORKPLACE (PREVENTION, PROHIBITION & REDRES...THE SEXUAL HARASSMENT OF WOMAN AT WORKPLACE (PREVENTION, PROHIBITION & REDRES...
THE SEXUAL HARASSMENT OF WOMAN AT WORKPLACE (PREVENTION, PROHIBITION & REDRES...
ASHISHKUMAR504404
 
Besu Shibpur Enquesta 2012 Intra College General Quiz Prelims.pptx
Besu Shibpur Enquesta 2012 Intra College General Quiz Prelims.pptxBesu Shibpur Enquesta 2012 Intra College General Quiz Prelims.pptx
Besu Shibpur Enquesta 2012 Intra College General Quiz Prelims.pptx
Rajdeep Chakraborty
 
NASIG ISSN 2025 updated for the_4-30meeting.pptx
NASIG ISSN 2025 updated for the_4-30meeting.pptxNASIG ISSN 2025 updated for the_4-30meeting.pptx
NASIG ISSN 2025 updated for the_4-30meeting.pptx
reine1
 
ICSE 2025 Keynote: Software Sustainability and its Engineering: How far have ...
ICSE 2025 Keynote: Software Sustainability and its Engineering: How far have ...ICSE 2025 Keynote: Software Sustainability and its Engineering: How far have ...
ICSE 2025 Keynote: Software Sustainability and its Engineering: How far have ...
patricialago3459
 
PowerPoint_Tips.ppt tips for PPT Presentations
PowerPoint_Tips.ppt tips for PPT PresentationsPowerPoint_Tips.ppt tips for PPT Presentations
PowerPoint_Tips.ppt tips for PPT Presentations
Sinokrot Global Group (SGG)
 
stackconf 2025 | Zap the Flakes! Leveraging AI to Combat Flaky Tests with CAN...
stackconf 2025 | Zap the Flakes! Leveraging AI to Combat Flaky Tests with CAN...stackconf 2025 | Zap the Flakes! Leveraging AI to Combat Flaky Tests with CAN...
stackconf 2025 | Zap the Flakes! Leveraging AI to Combat Flaky Tests with CAN...
NETWAYS
 
Microsoft Azure Data Fundamentals (DP-900) Exam Dumps & Questions 2025.pdf
Microsoft Azure Data Fundamentals (DP-900) Exam Dumps & Questions 2025.pdfMicrosoft Azure Data Fundamentals (DP-900) Exam Dumps & Questions 2025.pdf
Microsoft Azure Data Fundamentals (DP-900) Exam Dumps & Questions 2025.pdf
MinniePfeiffer
 
Wood Age and Trees of life - talk at Newcastle City Library
Wood Age and Trees of life - talk at Newcastle City LibraryWood Age and Trees of life - talk at Newcastle City Library
Wood Age and Trees of life - talk at Newcastle City Library
Woods for the Trees
 
Bloom Where You Are Planted 05.04.2025.pptx
Bloom Where You Are Planted 05.04.2025.pptxBloom Where You Are Planted 05.04.2025.pptx
Bloom Where You Are Planted 05.04.2025.pptx
FamilyWorshipCenterD
 
2. Asexual propagation of fruit crops and .pptx
2. Asexual propagation of fruit crops and .pptx2. Asexual propagation of fruit crops and .pptx
2. Asexual propagation of fruit crops and .pptx
aschenakidawit1
 
fundamentals of communicationclass notes.pptx
fundamentals of communicationclass notes.pptxfundamentals of communicationclass notes.pptx
fundamentals of communicationclass notes.pptx
Sunkod
 
stackconf 2025 | How NVMe over TCP runs PostgreSQL in Quicksilver mode! by Sa...
stackconf 2025 | How NVMe over TCP runs PostgreSQL in Quicksilver mode! by Sa...stackconf 2025 | How NVMe over TCP runs PostgreSQL in Quicksilver mode! by Sa...
stackconf 2025 | How NVMe over TCP runs PostgreSQL in Quicksilver mode! by Sa...
NETWAYS
 
Platform Engineering >> Platform Product Management.pptx
Platform Engineering  >>  Platform Product Management.pptxPlatform Engineering  >>  Platform Product Management.pptx
Platform Engineering >> Platform Product Management.pptx
noelorona
 
stackconf 2025 | Detect & Respond to Threats in Kubernetes with Falco by Luca...
stackconf 2025 | Detect & Respond to Threats in Kubernetes with Falco by Luca...stackconf 2025 | Detect & Respond to Threats in Kubernetes with Falco by Luca...
stackconf 2025 | Detect & Respond to Threats in Kubernetes with Falco by Luca...
NETWAYS
 
stackconf 2025 | IP Authentication: A Tale of Performance Pitfalls and Challe...
stackconf 2025 | IP Authentication: A Tale of Performance Pitfalls and Challe...stackconf 2025 | IP Authentication: A Tale of Performance Pitfalls and Challe...
stackconf 2025 | IP Authentication: A Tale of Performance Pitfalls and Challe...
NETWAYS
 
stackconf 2025 | Stratoshark: Bringing the Wireshark experience to cloud and ...
stackconf 2025 | Stratoshark: Bringing the Wireshark experience to cloud and ...stackconf 2025 | Stratoshark: Bringing the Wireshark experience to cloud and ...
stackconf 2025 | Stratoshark: Bringing the Wireshark experience to cloud and ...
NETWAYS
 
stackconf 2025 | The Power of Small Habits in Agile Teams by Maroš Kutschy.pdf
stackconf 2025 | The Power of Small Habits in Agile Teams by Maroš Kutschy.pdfstackconf 2025 | The Power of Small Habits in Agile Teams by Maroš Kutschy.pdf
stackconf 2025 | The Power of Small Habits in Agile Teams by Maroš Kutschy.pdf
NETWAYS
 
stackconf 2025 | The Sustainable Infrastructure of the future by Alessandro V...
stackconf 2025 | The Sustainable Infrastructure of the future by Alessandro V...stackconf 2025 | The Sustainable Infrastructure of the future by Alessandro V...
stackconf 2025 | The Sustainable Infrastructure of the future by Alessandro V...
NETWAYS
 
THE SEXUAL HARASSMENT OF WOMAN AT WORKPLACE (PREVENTION, PROHIBITION & REDRES...
THE SEXUAL HARASSMENT OF WOMAN AT WORKPLACE (PREVENTION, PROHIBITION & REDRES...THE SEXUAL HARASSMENT OF WOMAN AT WORKPLACE (PREVENTION, PROHIBITION & REDRES...
THE SEXUAL HARASSMENT OF WOMAN AT WORKPLACE (PREVENTION, PROHIBITION & REDRES...
ASHISHKUMAR504404
 
Besu Shibpur Enquesta 2012 Intra College General Quiz Prelims.pptx
Besu Shibpur Enquesta 2012 Intra College General Quiz Prelims.pptxBesu Shibpur Enquesta 2012 Intra College General Quiz Prelims.pptx
Besu Shibpur Enquesta 2012 Intra College General Quiz Prelims.pptx
Rajdeep Chakraborty
 
NASIG ISSN 2025 updated for the_4-30meeting.pptx
NASIG ISSN 2025 updated for the_4-30meeting.pptxNASIG ISSN 2025 updated for the_4-30meeting.pptx
NASIG ISSN 2025 updated for the_4-30meeting.pptx
reine1
 
ICSE 2025 Keynote: Software Sustainability and its Engineering: How far have ...
ICSE 2025 Keynote: Software Sustainability and its Engineering: How far have ...ICSE 2025 Keynote: Software Sustainability and its Engineering: How far have ...
ICSE 2025 Keynote: Software Sustainability and its Engineering: How far have ...
patricialago3459
 

Do it on your own - From 3 to 5 Star Linked Open Data with RMLio