SlideShare a Scribd company logo
Digital Enterprise Research Institute                                                               www.deri.ie




                                   Linked Data:
                            opportunities and challenges
                                              Dr. Michael Hausenblas, DERI, NUI Galway

                      Open Science Data Cloud NSF PIRE Workshop, Edinburgh, UK, 18 July 2012




 Copyright 2011 Digital Enterprise Research Institute. All rights reserved.




                                                                              Enabling Networked Knowledge
Linked Data 101
Linked Data principles


① Use URIs to identify the “things” in your data


② Use HTTP URIs so people & machines can look them up


③ When a URI is looked up return a description of the thing in a
  structured format (RDF)


④ Link to related things to provide context



                         http://www.w3.org/DesignIssues/LinkedData.html
HTTP URIs
HTTP URIs




curl -L -H "Accept: application/rdf+xml" http://dbpedia.org/resource/Edinburgh

<?xml version="1.0" encoding="utf-8" ?>
<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:owl="http://www.w3.org/2002/07/owl#"
     xmlns:foaf="http://xmlns.com/foaf/0.1/"
     xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
     xmlns:dbpedia-owl="http://dbpedia.org/ontology/"
     xmlns:dcterms="http://purl.org/dc/terms/"
     xmlns:dbpprop="http://dbpedia.org/property/"
     xmlns:ns10="http://dbpedia.org/property/start/" >
  <rdf:Description rdf:about="http://dbpedia.org/resource/Firrhill_High_School">
    <dbpedia-owl:city rdf:resource="http://dbpedia.org/resource/Edinburgh" />
  </rdf:Description>
  <rdf:Description rdf:about="http://dbpedia.org/resource/Murrayfield_Stadium">
    <dbpedia-owl:location rdf:resource="http://dbpedia.org/resource/Edinburgh" />
    <dbpprop:location rdf:resource="http://dbpedia.org/resource/Edinburgh" />
  </rdf:Description>
  <rdf:Description rdf:about="http://dbpedia.org/resource/Stewart%27s_Melville_College">
    <dbpedia-owl:city rdf:resource="http://dbpedia.org/resource/Edinburgh" />
    <dbpprop:city rdf:resource="http://dbpedia.org/resource/Edinburgh" />
  </rdf:Description>
HTTP URIs




curl -L -H "Accept: text/turtle" http://data.ordnancesurvey.co.uk/id/7000000000017765


<http://data.ordnancesurvey.co.uk/doc/7000000000017765> rdf:type foaf:Document, dctype:Text ;
       foaf:primaryTopic <http://data.ordnancesurvey.co.uk/id/7000000000017765> ;
       dct:title "Linked Data for The County of Hampshire" ;
       dct:hasFormat <http://data.ordnancesurvey.co.uk/doc/7000000000017765.rdf> ,
                     <http://data.ordnancesurvey.co.uk/doc/7000000000017765.html> ,
                     <http://data.ordnancesurvey.co.uk/doc/7000000000017765.json> ,
                     <http://data.ordnancesurvey.co.uk/doc/7000000000017765.ttl> .

<http://data.ordnancesurvey.co.uk/id/7000000000017636> rdfs:label "Tadley" ;
                                                       skos:prefLabel "Tadley" .

<http://data.ordnancesurvey.co.uk/id/7000000000017510> rdfs:label "Newton Valence" ;
                                                       skos:prefLabel "Newton Valence" .

<http://data.ordnancesurvey.co.uk/id/7000000000017817> rdfs:label "Ashmansworth" ;
                                                       skos:prefLabel "Ashmansworth" .
HTTP URIs




curl -L -H "Accept: text/turtle” http://bio2rdf.org/genbank:AC008393

@prefix   rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix   owl: <http://www.w3.org/2002/07/owl#> .
@prefix   rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix   dc: http://purl.org/dc/elements/1.1/ .

<http://bio2rdf.org/genbank:AC008393> a <http://bio2rdf.org/genbank_resource:Sequence> ;
     rdfs:label "Homo sapiens chromosome 5 clone CTC-241N9, complete sequence [genbank:AC008393]"
;
     owl:sameAs <http://bio2rdf.org/genbank:ac008393> ;
     dc:title "Homo sapiens chromosome 5 clone CTC-241N9, complete sequence" ;
     dc:modified "26-FEB-2002" ;
     <http://bio2rdf.org/bio2rdf_resource:length> "166847" ;
     <http://bio2rdf.org/bio2rdf_resource:linkedToFrom>
HTTP URIs




curl -L -H "Accept: text/turtle” http://bnb.data.bl.uk/doc/resource/009468944

@prefix   rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix   rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix   dct: <http://purl.org/dc/terms/> .
@prefix   blterms: <http://www.bl.uk/schemas/bibliographic/blterms#> .
@prefix   elements: <http://iflastandards.info/ns/isbd/elements/> .
@prefix   bibo: <http://purl.org/ontology/bibo/> .
@prefix   owl: <http://www.w3.org/2002/07/owl#> .
@prefix   foaf: <http://xmlns.com/foaf/0.1/> .
@prefix   linked-data: <http://purl.org/linked-data/api/vocab#> .
@prefix   void: <http://rdfs.org/ns/void#> .

<http://bnb.data.bl.uk/id/resource/009468944> dct:language <http://lexvo.org/id/iso639-3/eng> ;
     rdfs:seeAlso <http://www4.wiwiss.fu-berlin.de/bookmashup/books/0859761541> ;
     elements:P1053 "vii,147p."@en ;
     rdfs:label "William Wallace / Andrew Fisher" ;
     blterms:bnb "GB8714157" ;
     dct:creator <http://bnb.data.bl.uk/id/person/FisherAndrew1935-> ;
     bibo:isbn10 "0859761541" ;
     dct:title "William Wallace" ;
     rdf:type bibo:Book ,
     dct:BibliographicResource ;
     dct:subject <http://bnb.data.bl.uk/id/concept/ddc/e19/941.1020924> .
Linked Open Data
Linked Open Data cloud




               2007   2008
                                   2008          2010
                                                 2009
                          2008            2009
                            2008




          10
Linked Open Data cloud
http://lod-cloud.net/




       Over 300 open data sets with 40 billion facts, interlinked by 500 million typed links.
Linked Open Data cloud stats
Digital Enterprise Research Institute                                                  www.deri.ie



                                                         triples distribution




                                                         links distribution




                                                                    http://lod-cloud.net/state/

                                                           Enabling Networked Knowledge
… cost and benefits
Linked Data life cycles
Linked Data life cycles
Digital Enterprise Research Institute                                                                         www.deri.ie



                                           http://linked-data-life-cycles.info

   1                        2                   3                4                5                   6

         data                   modeling            publishing       discovery        integration         use cases
       awareness




  LOD cloud                 Neologism          Google Refine         FYN          LATC 24/7         data-gov.ie

  5stardata.info            Schema.org         D2RQ                  LATC DSI




                                                                             Enabling Networked Knowledge
Modeling
Digital Enterprise Research Institute                                                                    www.deri.ie




   1                        2              3                4                5                   6

         data                   modeling       publishing       discovery        integration         use cases
       awareness




  LOD cloud                 Neologism      Google Refine        FYN          LATC 24/7         data-gov.ie

  5stardata.info            Schema.org     D2RQ                 LATC DSI




                                                                        Enabling Networked Knowledge
Neologism
Digital Enterprise Research Institute                                www.deri.ie


  http://neologism.deri.ie/




                                               Enabling Networked Knowledge
Neologism
Digital Enterprise Research Institute                                www.deri.ie


   http://vocab.data.gov/




                                               Enabling Networked Knowledge
Schema.org – Linked Data
Digital Enterprise Research Institute                                      www.deri.ie




                                                     Enabling Networked Knowledge
Publishing
Digital Enterprise Research Institute                                                                    www.deri.ie




   1                        2              3                4                5                   6

         data                   modeling       publishing       discovery        integration         use cases
       awareness




  LOD cloud                 Neologism      Google Refine        FYN          LATC 24/7         data-gov.ie

  5stardata.info            Schema.org     D2RQ                 LATC DSI




                                                                        Enabling Networked Knowledge
Google Refine extension
Digital Enterprise Research Institute                                             www.deri.ie

http://lab.linkeddata.deri.ie/2010/grefine-rdf-extension/




                                                            Enabling Networked Knowledge
RDB2RDF – D2RQ
Digital Enterprise Research Institute                                 www.deri.ie


http://d2rq.org/




                                                Enabling Networked Knowledge
Discovery
Digital Enterprise Research Institute                                                                    www.deri.ie




   1                        2              3                4                5                   6

         data                   modeling       publishing       discovery        integration         use cases
       awareness




  LOD cloud                 Neologism      Google Refine        FYN          LATC 24/7         data-gov.ie

  5stardata.info            Schema.org     D2RQ                 LATC DSI




                                                                        Enabling Networked Knowledge
Follow-Your-Nose
Digital Enterprise Research Institute                                   www.deri.ie




                                                  Enabling Networked Knowledge
                                             24
Dataset discovery
Digital Enterprise Research Institute                                    www.deri.ie



http://dsi.lod-cloud.net/




                                                   Enabling Networked Knowledge
Integration
Digital Enterprise Research Institute                                                                    www.deri.ie




   1                        2              3                4                5                   6

         data                   modeling       publishing       discovery        integration         use cases
       awareness




  LOD cloud                 Neologism      Google Refine        FYN          LATC 24/7         data-gov.ie

  5stardata.info            Schema.org     D2RQ                 LATC DSI




                                                                        Enabling Networked Knowledge
Why linking?
Digital Enterprise Research Institute                                                           www.deri.ie

                                                   http://webofdata.wordpress.com/2011/05/22/why-we-link/




Central Contractor Registration (CCR)




                                        Geonames


                                                                    Enabling Networked Knowledge
Effort distribution
Digital Enterprise Research Institute                                              www.deri.ie




                                                                          Third
                               Fix                   Publisher‘s          Party
                                                       Effort
                           Overall Data                                   Effort
                           Integration
                              Effort
                                                             Consumer‘s
                                                               Effort




                                                         Enabling Networked Knowledge
LATC – Interlinking Platform
Digital Enterprise Research Institute                                        www.deri.ie

http://latc-project.eu/platform




                                                       Enabling Networked Knowledge
http://www4.wiwiss.fu-berlin.de/latc/toollibrary/screencast.html
Conclusion
Digital Enterprise Research Institute                                           www.deri.ie
  Opportunities
                   Use the LOD cloud as test-bed (experiments)
                   Benefit from LOD cloud in apps (context)
                   Contribute to make your data more valuable




                                                                                   Challenges
                                  Large-scale processing of Linked Data
                                  Distributed/federated SPARQL queries
                                  Quality of links and the data



                                                          Enabling Networked Knowledge
Resources
Digital Enterprise Research Institute                                                                      www.deri.ie




     Tutorials, technologies, specifications:
                 http://linkeddatabook.com
                 http://lod-cloud.net
                 http://linkeddata.org
                 http://linkeddata-specs.info
                 http://schema.rdfs.org

     Videos:
                 http://ted.com/talks/tim_berners_lee_on_the_next_web.html - Tim Berners-Lee’s TED talk
                 http://www.youtube.com/watch?v=GKfJ5onP5SQ - Linked Data (and the Web of Data)
                 http://www.youtube.com/watch?v=4x_xzT5eF5Q - What is Linked Data?
                 http://vimeo.com/36752317 - Linked Open Data (by Europeana)




                                                                         Enabling Networked Knowledge

More Related Content

What's hot (20)

Linked data life cycles by Michael Hausenblas, has 32 slides with 5167 views.
Linked data life cyclesLinked data life cycles
Linked data life cycles
Michael Hausenblas
32 slides5.2K views
Memory Connected by Li Ding, has 11 slides with 1335 views.
Memory ConnectedMemory Connected
Memory Connected
Li Ding
11 slides1.3K views
The Semantic Data Web, Sören Auer, University of Leipzig by LOD2 Creating Knowledge out of Interlinked Data, has 59 slides with 4032 views.
The Semantic Data Web, Sören Auer, University of LeipzigThe Semantic Data Web, Sören Auer, University of Leipzig
The Semantic Data Web, Sören Auer, University of Leipzig
LOD2 Creating Knowledge out of Interlinked Data
59 slides4K views
Introducción a Linked Open Data (espacios enlazados y enlazables) by Diego López-de-Ipiña González-de-Artaza, has 45 slides with 153 views.
Introducción a Linked Open Data (espacios enlazados y enlazables)Introducción a Linked Open Data (espacios enlazados y enlazables)
Introducción a Linked Open Data (espacios enlazados y enlazables)
Diego López-de-Ipiña González-de-Artaza
45 slides153 views
Linked data and semantic wikis by Sören Auer, has 42 slides with 978 views.
Linked data and semantic wikisLinked data and semantic wikis
Linked data and semantic wikis
Sören Auer
42 slides978 views
Government Linked Data: A Tipping Point for the Semantic Web by Nigel Shadbolt, has 41 slides with 636 views.
Government Linked Data: A Tipping Point for the Semantic WebGovernment Linked Data: A Tipping Point for the Semantic Web
Government Linked Data: A Tipping Point for the Semantic Web
Nigel Shadbolt
41 slides636 views
T and od v2 by Nigel Shadbolt, has 26 slides with 1275 views.
T and od v2T and od v2
T and od v2
Nigel Shadbolt
26 slides1.3K views
Internet Archives and Social Science Research - Yeungnam University by mwe400, has 31 slides with 376 views.
Internet Archives and Social Science Research - Yeungnam UniversityInternet Archives and Social Science Research - Yeungnam University
Internet Archives and Social Science Research - Yeungnam University
mwe400
31 slides376 views
"Plans are worthless, but planning is essential" by Research Data Alliance, has 39 slides with 487 views.
"Plans are worthless, but planning is essential""Plans are worthless, but planning is essential"
"Plans are worthless, but planning is essential"
Research Data Alliance
39 slides487 views
New challenges for digital scholarship and curation in the era of ubiquitous ... by Derek Keats, has 69 slides with 992 views.
New challenges for digital scholarship and curation in the era of ubiquitous ...New challenges for digital scholarship and curation in the era of ubiquitous ...
New challenges for digital scholarship and curation in the era of ubiquitous ...
Derek Keats
69 slides992 views
An introduction to Linked (Open) Data by Ali Khalili, has 111 slides with 966 views.
An introduction to Linked (Open) DataAn introduction to Linked (Open) Data
An introduction to Linked (Open) Data
Ali Khalili
111 slides966 views
Promises and Pitfalls: Linked Data, Privacy, and Library Catalogs by Emily Nimsakont, has 40 slides with 1148 views.
Promises and Pitfalls: Linked Data, Privacy, and Library CatalogsPromises and Pitfalls: Linked Data, Privacy, and Library Catalogs
Promises and Pitfalls: Linked Data, Privacy, and Library Catalogs
Emily Nimsakont
40 slides1.1K views
Sirris innovate2011 - Smart Products with smart data - introduction, Dr. Elen... by Sirris, has 30 slides with 338 views.
Sirris innovate2011 - Smart Products with smart data - introduction, Dr. Elen...Sirris innovate2011 - Smart Products with smart data - introduction, Dr. Elen...
Sirris innovate2011 - Smart Products with smart data - introduction, Dr. Elen...
Sirris
30 slides338 views
Linked data for Enterprise Data Integration by Sören Auer, has 35 slides with 3899 views.
Linked data for Enterprise Data IntegrationLinked data for Enterprise Data Integration
Linked data for Enterprise Data Integration
Sören Auer
35 slides3.9K views
Overview of Open Data, Linked Data and Web Science by Haklae Kim, has 34 slides with 8725 views.
Overview of Open Data, Linked Data and Web ScienceOverview of Open Data, Linked Data and Web Science
Overview of Open Data, Linked Data and Web Science
Haklae Kim
34 slides8.7K views
Next Steps for IMLS's National Digital Platform by Trevor Owens, has 50 slides with 971 views.
Next Steps for IMLS's National Digital PlatformNext Steps for IMLS's National Digital Platform
Next Steps for IMLS's National Digital Platform
Trevor Owens
50 slides971 views
Introduction to the Data Web, DBpedia and the Life-cycle of Linked Data by Sören Auer, has 184 slides with 6259 views.
Introduction to the Data Web, DBpedia and the Life-cycle of Linked DataIntroduction to the Data Web, DBpedia and the Life-cycle of Linked Data
Introduction to the Data Web, DBpedia and the Life-cycle of Linked Data
Sören Auer
184 slides6.3K views
W3 c semantic web activity by abhishek_manish2005, has 4 slides with 466 views.
W3 c semantic web activityW3 c semantic web activity
W3 c semantic web activity
abhishek_manish2005
4 slides466 views
The Value of Open by Nigel Shadbolt, has 27 slides with 1220 views.
The Value of OpenThe Value of Open
The Value of Open
Nigel Shadbolt
27 slides1.2K views
Introduction to Scholarly Communication and the CSCDC by Center for Scholarly Communication & Digital Curation, has 12 slides with 441 views.
Introduction to Scholarly Communication and the CSCDCIntroduction to Scholarly Communication and the CSCDC
Introduction to Scholarly Communication and the CSCDC
Center for Scholarly Communication & Digital Curation
12 slides441 views
Internet Archives and Social Science Research - Yeungnam University by mwe400, has 31 slides with 376 views.
Internet Archives and Social Science Research - Yeungnam UniversityInternet Archives and Social Science Research - Yeungnam University
Internet Archives and Social Science Research - Yeungnam University
mwe400
31 slides376 views
New challenges for digital scholarship and curation in the era of ubiquitous ... by Derek Keats, has 69 slides with 992 views.
New challenges for digital scholarship and curation in the era of ubiquitous ...New challenges for digital scholarship and curation in the era of ubiquitous ...
New challenges for digital scholarship and curation in the era of ubiquitous ...
Derek Keats
69 slides992 views
Sirris innovate2011 - Smart Products with smart data - introduction, Dr. Elen... by Sirris, has 30 slides with 338 views.
Sirris innovate2011 - Smart Products with smart data - introduction, Dr. Elen...Sirris innovate2011 - Smart Products with smart data - introduction, Dr. Elen...
Sirris innovate2011 - Smart Products with smart data - introduction, Dr. Elen...
Sirris
30 slides338 views
Overview of Open Data, Linked Data and Web Science by Haklae Kim, has 34 slides with 8725 views.
Overview of Open Data, Linked Data and Web ScienceOverview of Open Data, Linked Data and Web Science
Overview of Open Data, Linked Data and Web Science
Haklae Kim
34 slides8.7K views
Introduction to the Data Web, DBpedia and the Life-cycle of Linked Data by Sören Auer, has 184 slides with 6259 views.
Introduction to the Data Web, DBpedia and the Life-cycle of Linked DataIntroduction to the Data Web, DBpedia and the Life-cycle of Linked Data
Introduction to the Data Web, DBpedia and the Life-cycle of Linked Data
Sören Auer
184 slides6.3K views

Similar to Linked Data: opportunities and challenges (20)

Lgd 2 by Dublinked ., has 22 slides with 942 views.
Lgd 2Lgd 2
Lgd 2
Dublinked .
22 slides942 views
Dcat - Machine Accessible Data Catalogues by Fadi Maali, has 11 slides with 831 views.
Dcat - Machine Accessible Data CataloguesDcat - Machine Accessible Data Catalogues
Dcat - Machine Accessible Data Catalogues
Fadi Maali
11 slides831 views
Open Data - Where can it take us? by Derilinx, has 38 slides with 502 views.
Open Data - Where can it take us? Open Data - Where can it take us?
Open Data - Where can it take us?
Derilinx
38 slides502 views
VoID: Metadata for RDF Datasets by Richard Cyganiak, has 28 slides with 2796 views.
VoID: Metadata for RDF DatasetsVoID: Metadata for RDF Datasets
VoID: Metadata for RDF Datasets
Richard Cyganiak
28 slides2.8K views
dcat: An RDF vocabulary for interoperability of data catalogues by Richard Cyganiak, has 19 slides with 2807 views.
dcat: An RDF vocabulary for interoperability of data cataloguesdcat: An RDF vocabulary for interoperability of data catalogues
dcat: An RDF vocabulary for interoperability of data catalogues
Richard Cyganiak
19 slides2.8K views
Hello Open World - Semtech 2009 by Alexandre Passant, has 112 slides with 585 views.
Hello Open World - Semtech 2009Hello Open World - Semtech 2009
Hello Open World - Semtech 2009
Alexandre Passant
112 slides585 views
How to Publish Open Data by Richard Cyganiak, has 43 slides with 4100 views.
How to Publish Open DataHow to Publish Open Data
How to Publish Open Data
Richard Cyganiak
43 slides4.1K views
Linked Data lifecycle by Fadi Maali, has 10 slides with 797 views.
Linked Data lifecycleLinked Data lifecycle
Linked Data lifecycle
Fadi Maali
10 slides797 views
Linked Data for Federation of OER Data &amp; Repositories by Stefan Dietze, has 18 slides with 4058 views.
Linked Data for Federation of OER Data &amp; RepositoriesLinked Data for Federation of OER Data &amp; Repositories
Linked Data for Federation of OER Data &amp; Repositories
Stefan Dietze
18 slides4.1K views
Rethinking Microblogging: Open Distributed Semantic by Alexandre Passant, has 30 slides with 1866 views.
Rethinking Microblogging: Open Distributed SemanticRethinking Microblogging: Open Distributed Semantic
Rethinking Microblogging: Open Distributed Semantic
Alexandre Passant
30 slides1.9K views
What is SDMX-RDF? by Richard Cyganiak, has 21 slides with 2529 views.
What is SDMX-RDF?What is SDMX-RDF?
What is SDMX-RDF?
Richard Cyganiak
21 slides2.5K views
Linked Open Data by Derilinx, has 47 slides with 3120 views.
Linked Open DataLinked Open Data
Linked Open Data
Derilinx
47 slides3.1K views
Towards Lightweight Cyber-Physical Energy Systems using Linked Data, the Web ... by Edward Curry, has 40 slides with 7312 views.
Towards Lightweight Cyber-Physical Energy Systems using Linked Data, the Web ...Towards Lightweight Cyber-Physical Energy Systems using Linked Data, the Web ...
Towards Lightweight Cyber-Physical Energy Systems using Linked Data, the Web ...
Edward Curry
40 slides7.3K views
Linked Data In Action by Collabor8now Ltd, has 35 slides with 1299 views.
Linked Data In ActionLinked Data In Action
Linked Data In Action
Collabor8now Ltd
35 slides1.3K views
How to Build Linked Data Sites with Drupal 7 and RDFa by scorlosquet, has 140 slides with 11480 views.
How to Build Linked Data Sites with Drupal 7 and RDFaHow to Build Linked Data Sites with Drupal 7 and RDFa
How to Build Linked Data Sites with Drupal 7 and RDFa
scorlosquet
140 slides11.5K views
Linked Open Government Data by Derilinx, has 27 slides with 993 views.
Linked Open Government DataLinked Open Government Data
Linked Open Government Data
Derilinx
27 slides993 views
SMOB - A Framework for Semantic Microblogging by Alexandre Passant, has 9 slides with 1618 views.
SMOB - A Framework for Semantic MicrobloggingSMOB - A Framework for Semantic Microblogging
SMOB - A Framework for Semantic Microblogging
Alexandre Passant
9 slides1.6K views
Linked Data Tutorial by Michael Hausenblas, has 37 slides with 13745 views.
Linked Data TutorialLinked Data Tutorial
Linked Data Tutorial
Michael Hausenblas
37 slides13.7K views
Sharing irish place names as linked open data - Rebecca Grant by dri_ireland, has 19 slides with 661 views.
Sharing irish place names as linked open data - Rebecca GrantSharing irish place names as linked open data - Rebecca Grant
Sharing irish place names as linked open data - Rebecca Grant
dri_ireland
19 slides661 views
RO-Crate: A framework for packaging research products into FAIR Research Objects by Carole Goble, has 38 slides with 499 views.
RO-Crate: A framework for packaging research products into FAIR Research ObjectsRO-Crate: A framework for packaging research products into FAIR Research Objects
RO-Crate: A framework for packaging research products into FAIR Research Objects
Carole Goble
38 slides499 views
Towards Lightweight Cyber-Physical Energy Systems using Linked Data, the Web ... by Edward Curry, has 40 slides with 7312 views.
Towards Lightweight Cyber-Physical Energy Systems using Linked Data, the Web ...Towards Lightweight Cyber-Physical Energy Systems using Linked Data, the Web ...
Towards Lightweight Cyber-Physical Energy Systems using Linked Data, the Web ...
Edward Curry
40 slides7.3K views
How to Build Linked Data Sites with Drupal 7 and RDFa by scorlosquet, has 140 slides with 11480 views.
How to Build Linked Data Sites with Drupal 7 and RDFaHow to Build Linked Data Sites with Drupal 7 and RDFa
How to Build Linked Data Sites with Drupal 7 and RDFa
scorlosquet
140 slides11.5K views
Sharing irish place names as linked open data - Rebecca Grant by dri_ireland, has 19 slides with 661 views.
Sharing irish place names as linked open data - Rebecca GrantSharing irish place names as linked open data - Rebecca Grant
Sharing irish place names as linked open data - Rebecca Grant
dri_ireland
19 slides661 views
RO-Crate: A framework for packaging research products into FAIR Research Objects by Carole Goble, has 38 slides with 499 views.
RO-Crate: A framework for packaging research products into FAIR Research ObjectsRO-Crate: A framework for packaging research products into FAIR Research Objects
RO-Crate: A framework for packaging research products into FAIR Research Objects
Carole Goble
38 slides499 views

More from Michael Hausenblas (16)

Invited talk at EKAW 2012 Doctoral symposium by Michael Hausenblas, has 10 slides with 1771 views.
Invited talk at EKAW 2012 Doctoral symposiumInvited talk at EKAW 2012 Doctoral symposium
Invited talk at EKAW 2012 Doctoral symposium
Michael Hausenblas
10 slides1.8K views
Keynote - TUT W3C Web Technology Day: Linked Data for Science and Industry, 2... by Michael Hausenblas, has 17 slides with 4241 views.
Keynote - TUT W3C Web Technology Day: Linked Data for Science and Industry, 2...Keynote - TUT W3C Web Technology Day: Linked Data for Science and Industry, 2...
Keynote - TUT W3C Web Technology Day: Linked Data for Science and Industry, 2...
Michael Hausenblas
17 slides4.2K views
EDF2012 LATC and the Data Cloud by Michael Hausenblas, has 15 slides with 927 views.
EDF2012 LATC and the Data CloudEDF2012 LATC and the Data Cloud
EDF2012 LATC and the Data Cloud
Michael Hausenblas
15 slides927 views
Open Data Applications by Michael Hausenblas, has 21 slides with 1008 views.
Open Data ApplicationsOpen Data Applications
Open Data Applications
Michael Hausenblas
21 slides1K views
Open Data Ireland - from research to practice by Michael Hausenblas, has 27 slides with 1193 views.
Open Data Ireland - from research to practiceOpen Data Ireland - from research to practice
Open Data Ireland - from research to practice
Michael Hausenblas
27 slides1.2K views
Keepin' Up With A LOD Of Changes by Michael Hausenblas, has 8 slides with 1047 views.
Keepin' Up With A LOD Of ChangesKeepin' Up With A LOD Of Changes
Keepin' Up With A LOD Of Changes
Michael Hausenblas
8 slides1K views
The Web, one huge database ... by Michael Hausenblas, has 39 slides with 1295 views.
The Web, one huge database ...The Web, one huge database ...
The Web, one huge database ...
Michael Hausenblas
39 slides1.3K views
Introducing the Linked Data Research Centre by Michael Hausenblas, has 33 slides with 1201 views.
Introducing the Linked Data Research CentreIntroducing the Linked Data Research Centre
Introducing the Linked Data Research Centre
Michael Hausenblas
33 slides1.2K views
ESWC 2009 In-Use Track: SCOVO by Michael Hausenblas, has 16 slides with 1376 views.
ESWC 2009 In-Use Track: SCOVOESWC 2009 In-Use Track: SCOVO
ESWC 2009 In-Use Track: SCOVO
Michael Hausenblas
16 slides1.4K views
ESWC 2009 Lightning Talks by Michael Hausenblas, has 19 slides with 1085 views.
ESWC 2009 Lightning TalksESWC 2009 Lightning Talks
ESWC 2009 Lightning Talks
Michael Hausenblas
19 slides1.1K views
voiD talk at LDOW09 by Michael Hausenblas, has 31 slides with 1167 views.
voiD talk at LDOW09voiD talk at LDOW09
voiD talk at LDOW09
Michael Hausenblas
31 slides1.2K views
Quick Linked Data Introduction by Michael Hausenblas, has 35 slides with 13611 views.
Quick Linked Data IntroductionQuick Linked Data Introduction
Quick Linked Data Introduction
Michael Hausenblas
35 slides13.6K views
A gentle introduction to riese by Michael Hausenblas, has 14 slides with 1587 views.
A gentle introduction to rieseA gentle introduction to riese
A gentle introduction to riese
Michael Hausenblas
14 slides1.6K views
RDFa-deployed Multimedia Metadata - Tutorial, Part 3 by Michael Hausenblas, has 15 slides with 747 views.
RDFa-deployed Multimedia Metadata - Tutorial, Part 3RDFa-deployed Multimedia Metadata - Tutorial, Part 3
RDFa-deployed Multimedia Metadata - Tutorial, Part 3
Michael Hausenblas
15 slides747 views
RDFa-deployed Multimedia Metadata - Tutorial, Part 2 by Michael Hausenblas, has 11 slides with 891 views.
RDFa-deployed Multimedia Metadata - Tutorial, Part 2RDFa-deployed Multimedia Metadata - Tutorial, Part 2
RDFa-deployed Multimedia Metadata - Tutorial, Part 2
Michael Hausenblas
11 slides891 views
RDFa-deployed Multimedia Metadata - Tutorial, Part 1 by Michael Hausenblas, has 9 slides with 607 views.
RDFa-deployed Multimedia Metadata - Tutorial, Part 1RDFa-deployed Multimedia Metadata - Tutorial, Part 1
RDFa-deployed Multimedia Metadata - Tutorial, Part 1
Michael Hausenblas
9 slides607 views
Keynote - TUT W3C Web Technology Day: Linked Data for Science and Industry, 2... by Michael Hausenblas, has 17 slides with 4241 views.
Keynote - TUT W3C Web Technology Day: Linked Data for Science and Industry, 2...Keynote - TUT W3C Web Technology Day: Linked Data for Science and Industry, 2...
Keynote - TUT W3C Web Technology Day: Linked Data for Science and Industry, 2...
Michael Hausenblas
17 slides4.2K views

Recently uploaded (20)

Cloud of everything Tech of the 21 century in Aviation by Assem mousa, has 4 slides with 20 views.
Cloud of everything Tech of the 21 century in AviationCloud of everything Tech of the 21 century in Aviation
Cloud of everything Tech of the 21 century in Aviation
Assem mousa
4 slides20 views
Caching for Performance Masterclass: The In-Memory Datastore by ScyllaDB, has 23 slides with 107 views.
Caching for Performance Masterclass: The In-Memory DatastoreCaching for Performance Masterclass: The In-Memory Datastore
Caching for Performance Masterclass: The In-Memory Datastore
ScyllaDB
23 slides107 views
10 FinTech Solutions Every Business Should Know!.pdf by Yodaplus Technologies Private Limited , has 13 slides with 36 views.
10 FinTech Solutions Every Business Should Know!.pdf10 FinTech Solutions Every Business Should Know!.pdf
10 FinTech Solutions Every Business Should Know!.pdf
Yodaplus Technologies Private Limited
13 slides36 views
2025-02-27 Tech & Play_ Fun, UX, and Community.pdf by katalinjordans1, has 29 slides with 91 views.
2025-02-27 Tech & Play_ Fun, UX, and Community.pdf2025-02-27 Tech & Play_ Fun, UX, and Community.pdf
2025-02-27 Tech & Play_ Fun, UX, and Community.pdf
katalinjordans1
29 slides91 views
EaseUS Partition Master Crack 2025 + Serial Key by kherorpacca127, has 11 slides with 22 views.
EaseUS Partition Master Crack 2025 + Serial KeyEaseUS Partition Master Crack 2025 + Serial Key
EaseUS Partition Master Crack 2025 + Serial Key
kherorpacca127
11 slides22 views
DealBook of Ukraine: 2025 edition | AVentures Capital by Yevgen Sysoyev, has 48 slides with 509 views.
DealBook of Ukraine: 2025 edition | AVentures CapitalDealBook of Ukraine: 2025 edition | AVentures Capital
DealBook of Ukraine: 2025 edition | AVentures Capital
Yevgen Sysoyev
48 slides509 views
Dev Dives: Unlock the future of automation with UiPath Agent Builder by UiPathCommunity, has 21 slides with 597 views.
Dev Dives: Unlock the future of automation with UiPath Agent BuilderDev Dives: Unlock the future of automation with UiPath Agent Builder
Dev Dives: Unlock the future of automation with UiPath Agent Builder
UiPathCommunity
21 slides597 views
Teaching Prompting and Prompt Sharing to End Users.pptx by Michael Blumenthal (Microsoft MVP), has 36 slides with 58 views.
Teaching Prompting and Prompt Sharing to End Users.pptxTeaching Prompting and Prompt Sharing to End Users.pptx
Teaching Prompting and Prompt Sharing to End Users.pptx
Michael Blumenthal (Microsoft MVP)
36 slides58 views
Data-Driven Public Safety: Reliable Data When Every Second Counts by Safe Software, has 73 slides with 256 views.
Data-Driven Public Safety: Reliable Data When Every Second CountsData-Driven Public Safety: Reliable Data When Every Second Counts
Data-Driven Public Safety: Reliable Data When Every Second Counts
Safe Software
73 slides256 views
Unlocking DevOps Secuirty :Vault & Keylock by HusseinMalikMammadli, has 38 slides with 18 views.
Unlocking DevOps Secuirty :Vault & KeylockUnlocking DevOps Secuirty :Vault & Keylock
Unlocking DevOps Secuirty :Vault & Keylock
HusseinMalikMammadli
38 slides18 views
Blockchain for Businesses Practical Use Cases & Benefits.pdf by Yodaplus Technologies Private Limited , has 7 slides with 49 views.
Blockchain for Businesses Practical Use Cases & Benefits.pdfBlockchain for Businesses Practical Use Cases & Benefits.pdf
Blockchain for Businesses Practical Use Cases & Benefits.pdf
Yodaplus Technologies Private Limited
7 slides49 views
Computational Photography: How Technology is Changing Way We Capture the World by HusseinMalikMammadli, has 24 slides with 24 views.
Computational Photography: How Technology is Changing Way We Capture the WorldComputational Photography: How Technology is Changing Way We Capture the World
Computational Photography: How Technology is Changing Way We Capture the World
HusseinMalikMammadli
24 slides24 views
Leadership u automatizaciji: RPA priče iz prakse! by UiPathCommunity, has 14 slides with 145 views.
Leadership u automatizaciji: RPA priče iz prakse!Leadership u automatizaciji: RPA priče iz prakse!
Leadership u automatizaciji: RPA priče iz prakse!
UiPathCommunity
14 slides145 views
Getting Started with AWS - Enterprise Landing Zone for Terraform Learning & D... by Chris Wahl, has 92 slides with 97 views.
Getting Started with AWS - Enterprise Landing Zone for Terraform Learning & D...Getting Started with AWS - Enterprise Landing Zone for Terraform Learning & D...
Getting Started with AWS - Enterprise Landing Zone for Terraform Learning & D...
Chris Wahl
92 slides97 views
William Maclyn Murphy McRae - A Seasoned Professional Renowned by William Maclyn Murphy McRae, has 8 slides with 54 views.
William Maclyn Murphy McRae - A Seasoned Professional RenownedWilliam Maclyn Murphy McRae - A Seasoned Professional Renowned
William Maclyn Murphy McRae - A Seasoned Professional Renowned
William Maclyn Murphy McRae
8 slides54 views
Agentic AI: The 2025 Next-Gen Automation Guide by Thoughtminds, has 12 slides with 80 views.
Agentic AI: The 2025 Next-Gen Automation GuideAgentic AI: The 2025 Next-Gen Automation Guide
Agentic AI: The 2025 Next-Gen Automation Guide
Thoughtminds
12 slides80 views
Build with AI on Google Cloud Session #3 by Margaret Maynard-Reid, has 21 slides with 111 views.
Build with AI on Google Cloud Session #3Build with AI on Google Cloud Session #3
Build with AI on Google Cloud Session #3
Margaret Maynard-Reid
21 slides111 views
Revolutionizing Field Service: How LLMs Are Powering Smarter Knowledge Access... by Earley Information Science, has 49 slides with 121 views.
Revolutionizing Field Service: How LLMs Are Powering Smarter Knowledge Access...Revolutionizing Field Service: How LLMs Are Powering Smarter Knowledge Access...
Revolutionizing Field Service: How LLMs Are Powering Smarter Knowledge Access...
Earley Information Science
49 slides121 views
Mastering ChatGPT & LLMs for Practical Applications: Tips, Tricks, and Use Cases by Sanjay Willie, has 26 slides with 77 views.
Mastering ChatGPT & LLMs for Practical Applications: Tips, Tricks, and Use CasesMastering ChatGPT & LLMs for Practical Applications: Tips, Tricks, and Use Cases
Mastering ChatGPT & LLMs for Practical Applications: Tips, Tricks, and Use Cases
Sanjay Willie
26 slides77 views
Combining Lexical and Semantic Search with Milvus 2.5 by Zilliz , has 38 slides with 67 views.
Combining Lexical and Semantic Search with Milvus 2.5Combining Lexical and Semantic Search with Milvus 2.5
Combining Lexical and Semantic Search with Milvus 2.5
Zilliz
38 slides67 views
Cloud of everything Tech of the 21 century in Aviation by Assem mousa, has 4 slides with 20 views.
Cloud of everything Tech of the 21 century in AviationCloud of everything Tech of the 21 century in Aviation
Cloud of everything Tech of the 21 century in Aviation
Assem mousa
4 slides20 views
Caching for Performance Masterclass: The In-Memory Datastore by ScyllaDB, has 23 slides with 107 views.
Caching for Performance Masterclass: The In-Memory DatastoreCaching for Performance Masterclass: The In-Memory Datastore
Caching for Performance Masterclass: The In-Memory Datastore
ScyllaDB
23 slides107 views
2025-02-27 Tech & Play_ Fun, UX, and Community.pdf
2025-02-27 Tech & Play_ Fun, UX, and Community.pdf2025-02-27 Tech & Play_ Fun, UX, and Community.pdf
2025-02-27 Tech & Play_ Fun, UX, and Community.pdf
katalinjordans1
 
EaseUS Partition Master Crack 2025 + Serial Key
EaseUS Partition Master Crack 2025 + Serial KeyEaseUS Partition Master Crack 2025 + Serial Key
EaseUS Partition Master Crack 2025 + Serial Key
kherorpacca127
 
DealBook of Ukraine: 2025 edition | AVentures Capital
DealBook of Ukraine: 2025 edition | AVentures CapitalDealBook of Ukraine: 2025 edition | AVentures Capital
DealBook of Ukraine: 2025 edition | AVentures Capital
Yevgen Sysoyev
 
Dev Dives: Unlock the future of automation with UiPath Agent Builder
Dev Dives: Unlock the future of automation with UiPath Agent BuilderDev Dives: Unlock the future of automation with UiPath Agent Builder
Dev Dives: Unlock the future of automation with UiPath Agent Builder
UiPathCommunity
 
Data-Driven Public Safety: Reliable Data When Every Second Counts
Data-Driven Public Safety: Reliable Data When Every Second CountsData-Driven Public Safety: Reliable Data When Every Second Counts
Data-Driven Public Safety: Reliable Data When Every Second Counts
Safe Software
 
Unlocking DevOps Secuirty :Vault & Keylock
Unlocking DevOps Secuirty :Vault & KeylockUnlocking DevOps Secuirty :Vault & Keylock
Unlocking DevOps Secuirty :Vault & Keylock
HusseinMalikMammadli
 
Computational Photography: How Technology is Changing Way We Capture the World
Computational Photography: How Technology is Changing Way We Capture the WorldComputational Photography: How Technology is Changing Way We Capture the World
Computational Photography: How Technology is Changing Way We Capture the World
HusseinMalikMammadli
 
Leadership u automatizaciji: RPA priče iz prakse!
Leadership u automatizaciji: RPA priče iz prakse!Leadership u automatizaciji: RPA priče iz prakse!
Leadership u automatizaciji: RPA priče iz prakse!
UiPathCommunity
 
Getting Started with AWS - Enterprise Landing Zone for Terraform Learning & D...
Getting Started with AWS - Enterprise Landing Zone for Terraform Learning & D...Getting Started with AWS - Enterprise Landing Zone for Terraform Learning & D...
Getting Started with AWS - Enterprise Landing Zone for Terraform Learning & D...
Chris Wahl
 
William Maclyn Murphy McRae - A Seasoned Professional Renowned
William Maclyn Murphy McRae - A Seasoned Professional RenownedWilliam Maclyn Murphy McRae - A Seasoned Professional Renowned
William Maclyn Murphy McRae - A Seasoned Professional Renowned
William Maclyn Murphy McRae
 
Agentic AI: The 2025 Next-Gen Automation Guide
Agentic AI: The 2025 Next-Gen Automation GuideAgentic AI: The 2025 Next-Gen Automation Guide
Agentic AI: The 2025 Next-Gen Automation Guide
Thoughtminds
 
Build with AI on Google Cloud Session #3
Build with AI on Google Cloud Session #3Build with AI on Google Cloud Session #3
Build with AI on Google Cloud Session #3
Margaret Maynard-Reid
 
Revolutionizing Field Service: How LLMs Are Powering Smarter Knowledge Access...
Revolutionizing Field Service: How LLMs Are Powering Smarter Knowledge Access...Revolutionizing Field Service: How LLMs Are Powering Smarter Knowledge Access...
Revolutionizing Field Service: How LLMs Are Powering Smarter Knowledge Access...
Earley Information Science
 
Mastering ChatGPT & LLMs for Practical Applications: Tips, Tricks, and Use Cases
Mastering ChatGPT & LLMs for Practical Applications: Tips, Tricks, and Use CasesMastering ChatGPT & LLMs for Practical Applications: Tips, Tricks, and Use Cases
Mastering ChatGPT & LLMs for Practical Applications: Tips, Tricks, and Use Cases
Sanjay Willie
 
Combining Lexical and Semantic Search with Milvus 2.5
Combining Lexical and Semantic Search with Milvus 2.5Combining Lexical and Semantic Search with Milvus 2.5
Combining Lexical and Semantic Search with Milvus 2.5
Zilliz
 

Linked Data: opportunities and challenges

Editor's Notes

  • #11: In the Figure each node representsa distinct dataset and arcs indicate the existenceof links between data elements in the two data sets.
  • #12: Some 300 datasets, 35billion facts, over 500 million links