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

More Related Content

What's hot (20)

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

Viewers also liked (20)

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

PPTX
#opentourism - Linked Open Data Publishing and Discovery Workshop
Raf Buyle
 
ODP
Linked Data
cyriacsmail
 
PDF
Implementing Linked Data in Low-Resource Conditions
AIMS (Agricultural Information Management Standards)
 
PDF
Machine-Interpretable Dataset and Service Descriptions for Heterogeneous Data...
andimou
 
PDF
RMLEditor: A Graph-based Mapping Editor for Linked Data Mappings
Pieter Heyvaert
 
PDF
High quality Linked Data generation for librarians
andimou
 
PPT
Future of Web 2.0 & The Semantic Web
is20090
 
PDF
Translation of Relational and Non-Relational Databases into RDF with xR2RML
Franck Michel
 
PPT
Linked Data Driven Data Virtualization for Web-scale Integration
rumito
 
PDF
Contextual Computing: Laying a Global Data Foundation
Richard Wallis
 
PPTX
Linked Data MLA 2015
Cason Snow
 
PPTX
Linked data MLA 2015
Cason Snow
 
PDF
Linked Data Generation for the University Data From Legacy Database
dannyijwest
 
PPTX
NISO/DCMI September 25 Webinar: Implementing Linked Data in Developing Countr...
National Information Standards Organization (NISO)
 
PPTX
Linked data HHS 2015
Cason Snow
 
ODP
Semantic Web - Introduction
Oleksandr Pryymak
 
PPT
Linked data and voyager
Edmund Chamberlain
 
PDF
Contextual Computing - Knowledge Graphs & Web of Entities
Richard Wallis
 
PPT
Linked Data and the Semantic Web - Mimas Seminar
Adrian Stevenson
 
PDF
Ontology-Based Data Access Mapping Generation using Data, Schema, Query, and ...
Pieter Heyvaert
 
#opentourism - Linked Open Data Publishing and Discovery Workshop
Raf Buyle
 
Linked Data
cyriacsmail
 
Implementing Linked Data in Low-Resource Conditions
AIMS (Agricultural Information Management Standards)
 
Machine-Interpretable Dataset and Service Descriptions for Heterogeneous Data...
andimou
 
RMLEditor: A Graph-based Mapping Editor for Linked Data Mappings
Pieter Heyvaert
 
High quality Linked Data generation for librarians
andimou
 
Future of Web 2.0 & The Semantic Web
is20090
 
Translation of Relational and Non-Relational Databases into RDF with xR2RML
Franck Michel
 
Linked Data Driven Data Virtualization for Web-scale Integration
rumito
 
Contextual Computing: Laying a Global Data Foundation
Richard Wallis
 
Linked Data MLA 2015
Cason Snow
 
Linked data MLA 2015
Cason Snow
 
Linked Data Generation for the University Data From Legacy Database
dannyijwest
 
NISO/DCMI September 25 Webinar: Implementing Linked Data in Developing Countr...
National Information Standards Organization (NISO)
 
Linked data HHS 2015
Cason Snow
 
Semantic Web - Introduction
Oleksandr Pryymak
 
Linked data and voyager
Edmund Chamberlain
 
Contextual Computing - Knowledge Graphs & Web of Entities
Richard Wallis
 
Linked Data and the Semantic Web - Mimas Seminar
Adrian Stevenson
 
Ontology-Based Data Access Mapping Generation using Data, Schema, Query, and ...
Pieter Heyvaert
 
Ad

More from Open Knowledge Belgium (20)

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

Recently uploaded (17)

PDF
From Draft to DSN - How to Get your Paper In [DSN 2025 Doctoral Forum Keynote]
vschiavoni
 
PPTX
presentation on legal and regulatory action
raoharsh4122001
 
PPTX
Presentationexpressions You are student leader and have just come from a stud...
BENSTARBEATZ
 
PPTX
2025-07-06 Abraham 06 (shared slides).pptx
Dale Wells
 
PPTX
Great-Books. Powerpoint presentation. files
tamayocrisgie
 
PDF
The Origin - A Simple Presentation on any project
RishabhDwivedi43
 
PPTX
Pastor Bob Stewart Acts 21 07 09 2025.pptx
FamilyWorshipCenterD
 
PPTX
AI presentation for everyone in every fields
dodinhkhai1
 
PDF
Buy Verified Payoneer Accounts — The Ultimate Guide for 2025 (Rank #1 on Goog...
Buy Verified Cash App Accounts
 
PDF
The Impact of Game Live Streaming on In-Game Purchases of Chinese Young Game ...
Shibaura Institute of Technology
 
PPTX
BARRIERS TO EFFECTIVE COMMUNICATION.pptx
shraddham25
 
PPTX
Inspired by VeinSense: Supercharge Your Hackathon with Agentic AI
ShubhamSharma2528
 
PPTX
some leadership theories MBA management.pptx
rkseo19
 
PDF
The Family Secret (essence of loveliness)
Favour Biodun
 
PDF
Buy Verified Coinbase Accounts — The Ultimate Guide for 2025 (Rank #1 on Goog...
Buy Verified Cash App Accounts
 
PPTX
STURGEON BAY WI AG PPT JULY 6 2025.pptx
FamilyWorshipCenterD
 
PDF
Leveraging the Power of Jira Dashboard.pdf
siddharthshukla742740
 
From Draft to DSN - How to Get your Paper In [DSN 2025 Doctoral Forum Keynote]
vschiavoni
 
presentation on legal and regulatory action
raoharsh4122001
 
Presentationexpressions You are student leader and have just come from a stud...
BENSTARBEATZ
 
2025-07-06 Abraham 06 (shared slides).pptx
Dale Wells
 
Great-Books. Powerpoint presentation. files
tamayocrisgie
 
The Origin - A Simple Presentation on any project
RishabhDwivedi43
 
Pastor Bob Stewart Acts 21 07 09 2025.pptx
FamilyWorshipCenterD
 
AI presentation for everyone in every fields
dodinhkhai1
 
Buy Verified Payoneer Accounts — The Ultimate Guide for 2025 (Rank #1 on Goog...
Buy Verified Cash App Accounts
 
The Impact of Game Live Streaming on In-Game Purchases of Chinese Young Game ...
Shibaura Institute of Technology
 
BARRIERS TO EFFECTIVE COMMUNICATION.pptx
shraddham25
 
Inspired by VeinSense: Supercharge Your Hackathon with Agentic AI
ShubhamSharma2528
 
some leadership theories MBA management.pptx
rkseo19
 
The Family Secret (essence of loveliness)
Favour Biodun
 
Buy Verified Coinbase Accounts — The Ultimate Guide for 2025 (Rank #1 on Goog...
Buy Verified Cash App Accounts
 
STURGEON BAY WI AG PPT JULY 6 2025.pptx
FamilyWorshipCenterD
 
Leveraging the Power of Jira Dashboard.pdf
siddharthshukla742740
 

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