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

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
Trevor Owens
 

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 Catalogues
Fadi Maali
 
VoID: Metadata for RDF Datasets
VoID: Metadata for RDF DatasetsVoID: Metadata for RDF Datasets
VoID: Metadata for RDF Datasets
Richard Cyganiak
 
Linked Data lifecycle
Linked Data lifecycleLinked Data lifecycle
Linked Data lifecycle
Fadi Maali
 
Linked Open Government Data
Linked Open Government DataLinked Open Government Data
Linked Open Government Data
Derilinx
 

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

Introducing the Linked Data Research Centre
Introducing the Linked Data Research CentreIntroducing the Linked Data Research Centre
Introducing the Linked Data Research Centre
Michael 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

Recently uploaded (20)

From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 

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