SlideShare a Scribd company logo
Linked Data and RDF
Semantic Engineering Seminar WS 2013/14
Daniel Nüst
daniel.nuest@wwu.de
Linked Data
WWW > Web of Documents
CSV, XML, HTML tables >>> Web of Data
Typed Links, to & from >>> global data graph

LOD
Principles
1. Use URIs to denote things.
2. Use HTTP URIs [#, /] so that these things can be
referred to and looked up ("dereferenced") by
people and user agents.
3. Provide useful information [metadata (aliases,
DC terms, technical: means of access, formats)]
about the thing when its URI is dereferenced,
leveraging standards such as RDF, SPARQL.
4. Include links to other [!] related things (using
their URIs) when publishing data on the Web
[reusing vocabularies].
http://en.wikipedia.org/wiki/Linked_data
2.46 billion pieces of information (RDF triples)

http://lod-cloud.net/ http://dbpedia.org/
http://lov.okfn.org/dataset/lov/index.html
http://lov.okfn.org/dataset/lov/details/vocabulary_geo.html
RDF (.rdf)
“HTML for data”

the thing

the value

the property

Goals/Applications

transfer information between machines (not people) without loss of meaning,
“identified on the web”

Vocabularies (terms) for statements
Serializations

http://www.w3.org/TR/rdf-primer/

<Subject> <Predicate> <Object>
http://www.w3.org/TR/rdf-primer/

http://www.example.org/index.html has a creator whose value is John Smith
http://www.example.org/index.html has a creator whose value is John Smith

http://www.w3.org/TR/rdf-primer/

http://www.example.org/index.html has a creation-date whose value is August 16, 1999
http://www.example.org/index.html has a language whose value is English
<http://www.example.org/index.html> <http://purl.org/dc/elements/1.1/creator> <http://www.example.org/staffid/8574
<http://www.example.org/index.html> <http://www.example.org/terms/creation-date> "August 16, 1999" .
<http://www.example.org/index.html> <http://purl.org/dc/elements/1.1/language> "en" .

(shared) Vocabularies
namespace URI: http://www.example.org/
convention

ex:index.html dc:creator exstaff:85740 .
ex:index.html exterms:creation-date "August 16, 1999" .
ex:index.html dc:language "en" .

fy:joefy.iunm ed:dsfbups fytubgg:85740 .

http://www.w3.org/TR/rdf-primer/

prefix ex:
prefix dc:
namespace URI: http://purl.org/dc/elements/1.1/
prefix exterms: namespace URI: http://www.example.org/terms/
prefix exstaff: namespace URI: http://www.example.org/staffid/
John Smith has a an age whose value is 27

<http://www.example.org/staffid/85740> <http://www.example.org/terms/age>
"27"^^<http://www.w3.org/2001/XMLSchema#integer> .

ex:index.html exterms:creation-date "1999-08-16"^^xsd:date .

http://www.w3.org/TR/rdf-primer/

exstaff:85740 exterms:age "27"^^xsd:integer .
Concepts Things you should have heard about …

Data types

Expression of simple facts
Entailment

[Literals, URIrefs, RDF/XML, graphs]

http://www.w3.org/TR/rdf-concepts

Blank nodes
http://www.w3.org/TR/rdf-primer/
http://www.w3.org/TR/rdf-primer/

RDF/XML
Turtle (.ttl)
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
@prefix contact: <http://www.w3.org/2000/10/swap/pim/contact#>.
<http://www.w3.org/People/EM/contact#me>
rdf:type contact:Person;
contact:fullName "Eric Miller";
contact:mailbox <mailto:em@w3.org>;
contact:personalTitle "Dr.".

http://www.w3.org/2007/02/turtle/primer/
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdfsyntax-ns#"
xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#">
<geo:Point>
<geo:lat>55.701</geo:lat>
<geo:long>12.552</geo:long>
</geo:Point>
</rdf:RDF>

http://www.w3.org/2003/01/geo/#example

Geo and RDF
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns="http://xmlns.com/foaf/0.1/">
<Person>
<name>Dan Brickley</name>
<homepage dc:title="Dan's home page"
rdf:resource="http://danbri.org/"/>
<based_near geo:lat="51.47026" geo:long="2.59466"/>
<rdfs:seeAlso rdf:resource="http:/danbri.org/foaf.rdf"/>
<!-- more RDF here, using any RDF vocabularies -->
</Person>
</rdf:RDF>

http://www.w3.org/2003/01/geo/#example

Geo, FOAF & DC
Resources and references > see handout!

THANKS!
Linked  data and rdf
Linked data applications
browsers – navigate/traverse data sources using
links/RDF triples (connecting web of {documents, data})
search engines – start of the navigation
human-oriented (like Google…)
application-oriented (reuse indexing for different apps)

domain applications
Dbpedia Mobile, Revyu, DERI pipes, …
RDFa 1.0 Example
http://en.wikipedia.org/wiki/RDFa
RDFs and OWL
RDF Schema > http://en.wikipedia.org/wiki/RDF_Schema

Web Ontology Language > http://en.wikipedia.org/wiki/Web_Ontology_Language
more expressive
See also https://www.cambridgesemantics.com/de/semantic-university/rdfs-vs.-owl

More Related Content

PDF
DHWI Linked Open Data - Show and Tell
PPTX
RDF data model
PDF
RDF Transformations
PPTX
Evolutionary & Swarm Computing for the Semantic Web
PPTX
1 bioline & t space or2013 final
PPTX
Intro to Linked, Dutch Ships and Sailors and SPARQL handson
PPT
Webofdata
PPTX
URI Disambiguation in the Context of Linked Data
DHWI Linked Open Data - Show and Tell
RDF data model
RDF Transformations
Evolutionary & Swarm Computing for the Semantic Web
1 bioline & t space or2013 final
Intro to Linked, Dutch Ships and Sailors and SPARQL handson
Webofdata
URI Disambiguation in the Context of Linked Data

What's hot (20)

PDF
when the link makes sense
PPT
Citing Internet Sources
PPTX
Name That Graph !
PPTX
DAPI Diem: Using Linked Data and the WorldCat Discovery API to surface timely...
PDF
An introduction to Semantic Web and Linked Data
PDF
Consuming Linked Data by Machines - WWW2010
PPTX
Linked GeoData - WhereCampDC 20110610
PPTX
Belfiore gsp-dpla-theme-final
PPTX
Introduction of file handling
PPTX
Introduction to Linked Data
PDF
Keynote session - LOD2014 W3C event
PPTX
Libraries and Linked Data: Looking to the Future (1)
PPT
Linked Data Overview - AGI Technical SIG
PDF
18 ° Nexa Lunch Seminar - Lo stato dell'arte dei Linked Open Data italiani
PDF
#sod14 - ok, è un endpoint SPARQL non facciamoci prendere dal panico
PDF
Introducción a la web semántica - Linkatu - irekia 2012
PPTX
Libraries and Linked Data: Looking to the Future (2)
PDF
Introduction to OpenRefine
PPT
Linked Data Tutorial
PPTX
Libraries and Linked Data: Looking to the Future (3)
when the link makes sense
Citing Internet Sources
Name That Graph !
DAPI Diem: Using Linked Data and the WorldCat Discovery API to surface timely...
An introduction to Semantic Web and Linked Data
Consuming Linked Data by Machines - WWW2010
Linked GeoData - WhereCampDC 20110610
Belfiore gsp-dpla-theme-final
Introduction of file handling
Introduction to Linked Data
Keynote session - LOD2014 W3C event
Libraries and Linked Data: Looking to the Future (1)
Linked Data Overview - AGI Technical SIG
18 ° Nexa Lunch Seminar - Lo stato dell'arte dei Linked Open Data italiani
#sod14 - ok, è un endpoint SPARQL non facciamoci prendere dal panico
Introducción a la web semántica - Linkatu - irekia 2012
Libraries and Linked Data: Looking to the Future (2)
Introduction to OpenRefine
Linked Data Tutorial
Libraries and Linked Data: Looking to the Future (3)
Ad

Similar to Linked data and rdf (20)

PDF
Publishing and Using Linked Data
PPT
Publishing data on the Semantic Web
PPTX
Linked data HHS 2015
PPT
Understanding RDF: the Resource Description Framework in Context (1999)
PPT
The Semantic Web An Introduction
ODP
Web of data
PPTX
Linked Data MLA 2015
PPTX
Linked data MLA 2015
PDF
W3C Tutorial on Semantic Web and Linked Data at WWW 2013
PDF
An introduction to Semantic Web and Linked Data
PDF
An introduction to Semantic Web and Linked Data
PPT
ORE and SWAP: Composition and Complexity
PPTX
NISO/DCMI Webinar: Schema.org and Linked Data: Complementary Approaches to Pu...
PPTX
Madrid Building blocks of Linked Data
PPTX
Linked Data: A short(-ish) introduction
KEY
How RDFa works
KEY
RDFa Introductory Course Session 2/4 How RDFa
PPTX
RDFa: an introduction
PPT
Year of the Monkey: Lessons from the first year of SearchMonkey
PPT
Semantic Web Austin Yahoo
Publishing and Using Linked Data
Publishing data on the Semantic Web
Linked data HHS 2015
Understanding RDF: the Resource Description Framework in Context (1999)
The Semantic Web An Introduction
Web of data
Linked Data MLA 2015
Linked data MLA 2015
W3C Tutorial on Semantic Web and Linked Data at WWW 2013
An introduction to Semantic Web and Linked Data
An introduction to Semantic Web and Linked Data
ORE and SWAP: Composition and Complexity
NISO/DCMI Webinar: Schema.org and Linked Data: Complementary Approaches to Pu...
Madrid Building blocks of Linked Data
Linked Data: A short(-ish) introduction
How RDFa works
RDFa Introductory Course Session 2/4 How RDFa
RDFa: an introduction
Year of the Monkey: Lessons from the first year of SearchMonkey
Semantic Web Austin Yahoo
Ad

More from Daniel Nüst (20)

PPTX
RR & Docker @ MuensteR Meetup (Sep 2017)
PDF
containerit at useR!2017 conference, Brussels
PDF
Docker @ Data Science Meetup
PPTX
Containers for sensor web services, applications and research @ Sensor Web Co...
PPTX
Docker @ FOSS4G 2016, Bonn
PDF
Atlas Zukünfte
PPTX
Frameworks for geoprocessing on the web with R
PPTX
Agile 2015 a-geo-label-for-the-sensor-web
PPTX
Visualising Interpolations of Mobile Sensor Observations
PPTX
WPS Application Patterns
PPTX
JavaScript Client Libraries for the (Former) Long Tail of OGC Standards
PPTX
Open Source and GitHub for Teaching with Software Development Projects
PPTX
5 Star Open Geoprocessing
PPTX
The 52°North Web Processing Service
PPTX
OGC SOS for Your Data
PPTX
sos4R - Accessing SensorWeb Data from R
PPTX
Connecting R to the Sensor Web
PPTX
sos4R @ OGC TC
ODP
sos4R - 52° North Innovation Price Presentation
PPT
Visualizing the Availability of Temporally Structured Sensor Data
RR & Docker @ MuensteR Meetup (Sep 2017)
containerit at useR!2017 conference, Brussels
Docker @ Data Science Meetup
Containers for sensor web services, applications and research @ Sensor Web Co...
Docker @ FOSS4G 2016, Bonn
Atlas Zukünfte
Frameworks for geoprocessing on the web with R
Agile 2015 a-geo-label-for-the-sensor-web
Visualising Interpolations of Mobile Sensor Observations
WPS Application Patterns
JavaScript Client Libraries for the (Former) Long Tail of OGC Standards
Open Source and GitHub for Teaching with Software Development Projects
5 Star Open Geoprocessing
The 52°North Web Processing Service
OGC SOS for Your Data
sos4R - Accessing SensorWeb Data from R
Connecting R to the Sensor Web
sos4R @ OGC TC
sos4R - 52° North Innovation Price Presentation
Visualizing the Availability of Temporally Structured Sensor Data

Recently uploaded (20)

PDF
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
PPTX
Institutional Correction lecture only . . .
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PPTX
master seminar digital applications in india
PDF
VCE English Exam - Section C Student Revision Booklet
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PPTX
Lesson notes of climatology university.
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PDF
Anesthesia in Laparoscopic Surgery in India
PPTX
Cell Types and Its function , kingdom of life
PDF
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
PPTX
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
PDF
01-Introduction-to-Information-Management.pdf
PDF
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PPTX
Cell Structure & Organelles in detailed.
PDF
Complications of Minimal Access Surgery at WLH
PDF
Basic Mud Logging Guide for educational purpose
PDF
O7-L3 Supply Chain Operations - ICLT Program
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
Institutional Correction lecture only . . .
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
master seminar digital applications in india
VCE English Exam - Section C Student Revision Booklet
human mycosis Human fungal infections are called human mycosis..pptx
Lesson notes of climatology university.
Pharmacology of Heart Failure /Pharmacotherapy of CHF
Anesthesia in Laparoscopic Surgery in India
Cell Types and Its function , kingdom of life
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
01-Introduction-to-Information-Management.pdf
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
Final Presentation General Medicine 03-08-2024.pptx
Cell Structure & Organelles in detailed.
Complications of Minimal Access Surgery at WLH
Basic Mud Logging Guide for educational purpose
O7-L3 Supply Chain Operations - ICLT Program

Linked data and rdf