SlideShare a Scribd company logo
1 of 32
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

Memory Connected
Memory ConnectedMemory Connected
Memory ConnectedLi Ding
 
Linked data and semantic wikis
Linked data and semantic wikisLinked data and semantic wikis
Linked data and semantic wikisSören Auer
 
Government Linked Data: A Tipping Point for the Semantic Web
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 WebNigel Shadbolt
 
Internet Archives and Social Science Research - Yeungnam University
Internet Archives and Social Science Research - Yeungnam UniversityInternet Archives and Social Science Research - Yeungnam University
Internet Archives and Social Science Research - Yeungnam Universitymwe400
 
"Plans are worthless, but planning is essential"
"Plans are worthless, but planning is essential""Plans are worthless, but planning is essential"
"Plans are worthless, but planning is essential"Research Data Alliance
 
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 ...
New challenges for digital scholarship and curation in the era of ubiquitous ...Derek Keats
 
An introduction to Linked (Open) Data
An introduction to Linked (Open) DataAn introduction to Linked (Open) Data
An introduction to Linked (Open) DataAli Khalili
 
Promises and Pitfalls: Linked Data, Privacy, and Library Catalogs
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 CatalogsEmily Nimsakont
 
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 innovate2011 - Smart Products with smart data - introduction, Dr. Elen...Sirris
 
Linked data for Enterprise Data Integration
Linked data for Enterprise Data IntegrationLinked data for Enterprise Data Integration
Linked data for Enterprise Data IntegrationSören Auer
 
Overview of Open Data, Linked Data and Web Science
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 ScienceHaklae Kim
 
Next Steps for IMLS's National Digital Platform
Next Steps for IMLS's National Digital PlatformNext Steps for IMLS's National Digital Platform
Next Steps for IMLS's National Digital PlatformTrevor Owens
 
Introduction to the Data Web, DBpedia and the Life-cycle of Linked Data
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 DataSören Auer
 

What's hot (20)

Linked data life cycles
Linked data life cyclesLinked data life cycles
Linked data life cycles
 
Memory Connected
Memory ConnectedMemory Connected
Memory Connected
 
The Semantic Data Web, Sören Auer, University of Leipzig
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
 
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)
Introducción a Linked Open Data (espacios enlazados y enlazables)
 
Linked data and semantic wikis
Linked data and semantic wikisLinked data and semantic wikis
Linked data and semantic wikis
 
Government Linked Data: A Tipping Point for the Semantic Web
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
 
T and od v2
T and od v2T and od v2
T and od v2
 
Internet Archives and Social Science Research - Yeungnam University
Internet Archives and Social Science Research - Yeungnam UniversityInternet Archives and Social Science Research - Yeungnam University
Internet Archives and Social Science Research - Yeungnam University
 
"Plans are worthless, but planning is essential"
"Plans are worthless, but planning is essential""Plans are worthless, but planning is essential"
"Plans are worthless, but planning is essential"
 
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 ...
New challenges for digital scholarship and curation in the era of ubiquitous ...
 
An introduction to Linked (Open) Data
An introduction to Linked (Open) DataAn introduction to Linked (Open) Data
An introduction to Linked (Open) Data
 
Promises and Pitfalls: Linked Data, Privacy, and Library Catalogs
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
 
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 innovate2011 - Smart Products with smart data - introduction, Dr. Elen...
 
Linked data for Enterprise Data Integration
Linked data for Enterprise Data IntegrationLinked data for Enterprise Data Integration
Linked data for Enterprise Data Integration
 
Overview of Open Data, Linked Data and Web Science
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
 
Next Steps for IMLS's National Digital Platform
Next Steps for IMLS's National Digital PlatformNext Steps for IMLS's National Digital Platform
Next Steps for IMLS's National Digital Platform
 
Introduction to the Data Web, DBpedia and the Life-cycle of Linked Data
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
 
W3 c semantic web activity
W3 c semantic web activityW3 c semantic web activity
W3 c semantic web activity
 
The Value of Open
The Value of OpenThe Value of Open
The Value of Open
 
Introduction to Scholarly Communication and the CSCDC
Introduction to Scholarly Communication and the CSCDCIntroduction to Scholarly Communication and the CSCDC
Introduction to Scholarly Communication and the CSCDC
 

Similar to Linked Data: opportunities and challenges

Dcat - Machine Accessible Data Catalogues
Dcat - Machine Accessible Data CataloguesDcat - Machine Accessible Data Catalogues
Dcat - Machine Accessible Data CataloguesFadi Maali
 
Open Data - Where can it take us?
Open Data - Where can it take us? Open Data - Where can it take us?
Open Data - Where can it take us? Derilinx
 
VoID: Metadata for RDF Datasets
VoID: Metadata for RDF DatasetsVoID: Metadata for RDF Datasets
VoID: Metadata for RDF DatasetsRichard Cyganiak
 
dcat: An RDF vocabulary for interoperability of data catalogues
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 cataloguesRichard Cyganiak
 
Hello Open World - Semtech 2009
Hello Open World - Semtech 2009Hello Open World - Semtech 2009
Hello Open World - Semtech 2009Alexandre Passant
 
Linked Data lifecycle
Linked Data lifecycleLinked Data lifecycle
Linked Data lifecycleFadi Maali
 
Linked Data for Federation of OER Data &amp; Repositories
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; RepositoriesStefan Dietze
 
Rethinking Microblogging: Open Distributed Semantic
Rethinking Microblogging: Open Distributed SemanticRethinking Microblogging: Open Distributed Semantic
Rethinking Microblogging: Open Distributed SemanticAlexandre Passant
 
Linked Open Data
Linked Open DataLinked Open Data
Linked Open DataDerilinx
 
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 ...
Towards Lightweight Cyber-Physical Energy Systems using Linked Data, the Web ...Edward Curry
 
How to Build Linked Data Sites with Drupal 7 and RDFa
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 RDFascorlosquet
 
Linked Open Government Data
Linked Open Government DataLinked Open Government Data
Linked Open Government DataDerilinx
 
SMOB - A Framework for Semantic Microblogging
SMOB - A Framework for Semantic MicrobloggingSMOB - A Framework for Semantic Microblogging
SMOB - A Framework for Semantic MicrobloggingAlexandre Passant
 
Sharing irish place names as linked open data - Rebecca Grant
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 Grantdri_ireland
 
RO-Crate: A framework for packaging research products into FAIR Research Objects
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 ObjectsCarole Goble
 

Similar to Linked Data: opportunities and challenges (20)

Lgd 2
Lgd 2Lgd 2
Lgd 2
 
Dcat - Machine Accessible Data Catalogues
Dcat - Machine Accessible Data CataloguesDcat - Machine Accessible Data Catalogues
Dcat - Machine Accessible Data Catalogues
 
Open Data - Where can it take us?
Open Data - Where can it take us? Open Data - Where can it take us?
Open Data - Where can it take us?
 
VoID: Metadata for RDF Datasets
VoID: Metadata for RDF DatasetsVoID: Metadata for RDF Datasets
VoID: Metadata for RDF Datasets
 
dcat: An RDF vocabulary for interoperability of data catalogues
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
 
Hello Open World - Semtech 2009
Hello Open World - Semtech 2009Hello Open World - Semtech 2009
Hello Open World - Semtech 2009
 
How to Publish Open Data
How to Publish Open DataHow to Publish Open Data
How to Publish Open Data
 
Linked Data lifecycle
Linked Data lifecycleLinked Data lifecycle
Linked Data lifecycle
 
Linked Data for Federation of OER Data &amp; Repositories
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
 
Rethinking Microblogging: Open Distributed Semantic
Rethinking Microblogging: Open Distributed SemanticRethinking Microblogging: Open Distributed Semantic
Rethinking Microblogging: Open Distributed Semantic
 
What is SDMX-RDF?
What is SDMX-RDF?What is SDMX-RDF?
What is SDMX-RDF?
 
Linked Open Data
Linked Open DataLinked Open Data
Linked Open Data
 
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 ...
Towards Lightweight Cyber-Physical Energy Systems using Linked Data, the Web ...
 
Linked Data In Action
Linked Data In ActionLinked Data In Action
Linked Data In Action
 
How to Build Linked Data Sites with Drupal 7 and RDFa
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
 
Linked Open Government Data
Linked Open Government DataLinked Open Government Data
Linked Open Government Data
 
SMOB - A Framework for Semantic Microblogging
SMOB - A Framework for Semantic MicrobloggingSMOB - A Framework for Semantic Microblogging
SMOB - A Framework for Semantic Microblogging
 
Linked Data Tutorial
Linked Data TutorialLinked Data Tutorial
Linked Data Tutorial
 
Sharing irish place names as linked open data - Rebecca Grant
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
 
RO-Crate: A framework for packaging research products into FAIR Research Objects
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
 

More from Michael Hausenblas

Invited talk at EKAW 2012 Doctoral symposium
Invited talk at EKAW 2012 Doctoral symposiumInvited talk at EKAW 2012 Doctoral symposium
Invited talk at EKAW 2012 Doctoral symposiumMichael Hausenblas
 
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...
Keynote - TUT W3C Web Technology Day: Linked Data for Science and Industry, 2...Michael Hausenblas
 
EDF2012 LATC and the Data Cloud
EDF2012 LATC and the Data CloudEDF2012 LATC and the Data Cloud
EDF2012 LATC and the Data CloudMichael Hausenblas
 
Open Data Ireland - from research to practice
Open Data Ireland - from research to practiceOpen Data Ireland - from research to practice
Open Data Ireland - from research to practiceMichael Hausenblas
 
Keepin' Up With A LOD Of Changes
Keepin' Up With A LOD Of ChangesKeepin' Up With A LOD Of Changes
Keepin' Up With A LOD Of ChangesMichael Hausenblas
 
The Web, one huge database ...
The Web, one huge database ...The Web, one huge database ...
The Web, one huge database ...Michael Hausenblas
 
Introducing the Linked Data Research Centre
Introducing the Linked Data Research CentreIntroducing the Linked Data Research Centre
Introducing the Linked Data Research CentreMichael Hausenblas
 
Quick Linked Data Introduction
Quick Linked Data IntroductionQuick Linked Data Introduction
Quick Linked Data IntroductionMichael Hausenblas
 
A gentle introduction to riese
A gentle introduction to rieseA gentle introduction to riese
A gentle introduction to rieseMichael Hausenblas
 
RDFa-deployed Multimedia Metadata - Tutorial, Part 3
RDFa-deployed Multimedia Metadata - Tutorial, Part 3RDFa-deployed Multimedia Metadata - Tutorial, Part 3
RDFa-deployed Multimedia Metadata - Tutorial, Part 3Michael Hausenblas
 
RDFa-deployed Multimedia Metadata - Tutorial, Part 2
RDFa-deployed Multimedia Metadata - Tutorial, Part 2RDFa-deployed Multimedia Metadata - Tutorial, Part 2
RDFa-deployed Multimedia Metadata - Tutorial, Part 2Michael Hausenblas
 
RDFa-deployed Multimedia Metadata - Tutorial, Part 1
RDFa-deployed Multimedia Metadata - Tutorial, Part 1RDFa-deployed Multimedia Metadata - Tutorial, Part 1
RDFa-deployed Multimedia Metadata - Tutorial, Part 1Michael Hausenblas
 

More from Michael Hausenblas (16)

Invited talk at EKAW 2012 Doctoral symposium
Invited talk at EKAW 2012 Doctoral symposiumInvited talk at EKAW 2012 Doctoral symposium
Invited talk at EKAW 2012 Doctoral symposium
 
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...
Keynote - TUT W3C Web Technology Day: Linked Data for Science and Industry, 2...
 
EDF2012 LATC and the Data Cloud
EDF2012 LATC and the Data CloudEDF2012 LATC and the Data Cloud
EDF2012 LATC and the Data Cloud
 
Open Data Applications
Open Data ApplicationsOpen Data Applications
Open Data Applications
 
Open Data Ireland - from research to practice
Open Data Ireland - from research to practiceOpen Data Ireland - from research to practice
Open Data Ireland - from research to practice
 
Keepin' Up With A LOD Of Changes
Keepin' Up With A LOD Of ChangesKeepin' Up With A LOD Of Changes
Keepin' Up With A LOD Of Changes
 
The Web, one huge database ...
The Web, one huge database ...The Web, one huge database ...
The Web, one huge database ...
 
Introducing the Linked Data Research Centre
Introducing the Linked Data Research CentreIntroducing the Linked Data Research Centre
Introducing the Linked Data Research Centre
 
ESWC 2009 In-Use Track: SCOVO
ESWC 2009 In-Use Track: SCOVOESWC 2009 In-Use Track: SCOVO
ESWC 2009 In-Use Track: SCOVO
 
ESWC 2009 Lightning Talks
ESWC 2009 Lightning TalksESWC 2009 Lightning Talks
ESWC 2009 Lightning Talks
 
voiD talk at LDOW09
voiD talk at LDOW09voiD talk at LDOW09
voiD talk at LDOW09
 
Quick Linked Data Introduction
Quick Linked Data IntroductionQuick Linked Data Introduction
Quick Linked Data Introduction
 
A gentle introduction to riese
A gentle introduction to rieseA gentle introduction to riese
A gentle introduction to riese
 
RDFa-deployed Multimedia Metadata - Tutorial, Part 3
RDFa-deployed Multimedia Metadata - Tutorial, Part 3RDFa-deployed Multimedia Metadata - Tutorial, Part 3
RDFa-deployed Multimedia Metadata - Tutorial, Part 3
 
RDFa-deployed Multimedia Metadata - Tutorial, Part 2
RDFa-deployed Multimedia Metadata - Tutorial, Part 2RDFa-deployed Multimedia Metadata - Tutorial, Part 2
RDFa-deployed Multimedia Metadata - Tutorial, Part 2
 
RDFa-deployed Multimedia Metadata - Tutorial, Part 1
RDFa-deployed Multimedia Metadata - Tutorial, Part 1RDFa-deployed Multimedia Metadata - Tutorial, Part 1
RDFa-deployed Multimedia Metadata - Tutorial, Part 1
 

Recently uploaded

Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Neo4j
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Wonjun Hwang
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
Artificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraArtificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraDeakin University
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024BookNet Canada
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 

Recently uploaded (20)

Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort ServiceHot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
Artificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraArtificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning era
 
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptxVulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 

Linked Data: opportunities and challenges

  • 1. 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
  • 3. 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
  • 5. 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>
  • 6. 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" .
  • 7. 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>
  • 8. 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> .
  • 10. Linked Open Data cloud 2007 2008 2008 2010 2009 2008 2009 2008 10
  • 11. Linked Open Data cloud http://lod-cloud.net/ Over 300 open data sets with 40 billion facts, interlinked by 500 million typed links.
  • 12. Linked Open Data cloud stats Digital Enterprise Research Institute www.deri.ie triples distribution links distribution http://lod-cloud.net/state/ Enabling Networked Knowledge
  • 13. … cost and benefits
  • 15. 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
  • 16. 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
  • 17. Neologism Digital Enterprise Research Institute www.deri.ie http://neologism.deri.ie/ Enabling Networked Knowledge
  • 18. Neologism Digital Enterprise Research Institute www.deri.ie http://vocab.data.gov/ Enabling Networked Knowledge
  • 19. Schema.org – Linked Data Digital Enterprise Research Institute www.deri.ie Enabling Networked Knowledge
  • 20. 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
  • 21. Google Refine extension Digital Enterprise Research Institute www.deri.ie http://lab.linkeddata.deri.ie/2010/grefine-rdf-extension/ Enabling Networked Knowledge
  • 22. RDB2RDF – D2RQ Digital Enterprise Research Institute www.deri.ie http://d2rq.org/ Enabling Networked Knowledge
  • 23. 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
  • 24. Follow-Your-Nose Digital Enterprise Research Institute www.deri.ie Enabling Networked Knowledge 24
  • 25. Dataset discovery Digital Enterprise Research Institute www.deri.ie http://dsi.lod-cloud.net/ Enabling Networked Knowledge
  • 26. 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
  • 27. 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
  • 28. 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
  • 29. LATC – Interlinking Platform Digital Enterprise Research Institute www.deri.ie http://latc-project.eu/platform Enabling Networked Knowledge
  • 31. 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
  • 32. 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

Editor's Notes

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