SlideShare una empresa de Scribd logo
1 de 35
Descargar para leer sin conexión
Chasing Serendipity with Linked Open Data

          Rob Stewart, Jamie Forth & Diana Bental

                  Members of the SerenA development team


                               27th June, 2012




Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   1 / 32
SerenA
Project vision




               “The vision of the SerenA project is to transform
           research processes by proactively creating surprising
           connection opportunities. We will deliver novel
           technologies, methods and evaluation techniques for
           supporting serendipitous interactions in the research
           arena.”




            Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   2 / 32
Introductions
       Design team




       Human factors team




       Dev team




       Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   3 / 32
Aims of the workshop




      Introduce the basic concepts of the Semantic Web.

      Creating a semantic user profile.

      Introduce and explore Linked Open Data.




       Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   4 / 32
SerenA
A web of connectivity

          Where might SerenA find information about
                 Places
                 Universities
                 Researchers
                 Research domains
                 . . . “Things”
          To connect people with pertinent and interesting ideas
          . . . and to each other through pathways of related areas




           Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   5 / 32
SerenA
A web of connectivity

          Where might SerenA find information about
                 Places
                 Universities
                 Researchers
                 Research domains
                 . . . “Things”
          To connect people with pertinent and interesting ideas
          . . . and to each other through pathways of related areas


                                                The web!

          The worlds largest distributed information resource
          Evolving to become more meaningfully connected
           Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   5 / 32
Evolution of the WWW




      Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   6 / 32
The World Wide Web
Legacy web


 <html>
   <body>
     <h1>About me</h1>
     This is a page describing me.

     <h2>My Interests</h2>
     <li> Football
     <li> Computer science
     <li> Jazz funk
   </body>
 </html>


         A distributed network of connected documents
         <html> jargon web browser rendering
      × Not machine readable
      × . . . Lacks deeper meaning


             Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   7 / 32
SerenA
WWW forecast




         Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   8 / 32
The Semantic Web




Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   9 / 32
The Semantic Web
Principles



             Building blocks are very simple!
             Describing resources with Resource Description Framework
                  Subject the resource being described
                 Property denotes traits or aspects of a resource
                   Object the associated resource




             Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   10 / 32
The Semantic Web
Principles



             Building blocks are very simple!
             Describing resources with Resource Description Framework
                  Subject the resource being described
                 Property denotes traits or aspects of a resource
                   Object the associated resource
     e.g.

     <Joe Bloggs> age "40"
     <Joe Bloggs> friend <Harry Hill>
     <Hary Hill> location <Edinburgh>




             Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   10 / 32
The Semantic Web
Terminology




          Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   11 / 32
The Semantic Web
Principles




             Unique Resource Identifier’s represent things
             http://www.serena.ac.uk/users/robstewart

             The same thing can have many URIs.

             The same thing can have different names in different data
             sources.
             http://www.macs.hw.ac.uk/~rs46/rob
             https://www.twitter.com/!#/robstewartUK
             http://www.serena.ac.uk/users/robstewart




             Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   12 / 32
The Semantic Web
Terminology




          Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   13 / 32
The Semantic Web
Semantic interlinking

          RDF on Rob’s home page
          http://www.macs.hw.ac.uk/~rs46/rob
          @prefix foaf: <http://xmlns.com/foaf/0.1/> .
          @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .

          <http://www.macs.hw.ac.uk/~rs46/rob> a foaf:Person;
             foaf:depiction <http://www.macs.hw.ac.uk/~rs46/images/headshot.jpg>;
             foaf:name "Rob Stewart";
             foaf:topic_interest <http://dbpedia.org/resource/Semantic_web> .



          RDF available from Twitter
          https://www.twitter.com/!#/robstewartUK
          @prefix foaf: <http://xmlns.com/foaf/0.1/> .
          @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

          <https://www.twitter.com/!#/robstewartUK>
             rdfs:comment "Tweets about GNU and FOSS, but mostly Real Ale";
             foaf:based_near <http://dbpedia.org/resource/Edinburgh> .

           Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   14 / 32
The Semantic Web
Semantic inference

          We can link these together using owl:sameAs.
          http://www.macs.hw.ac.uk/~rs46/rob
             owl:sameAs
          https://www.twitter.com/!#/robstewartUK
             owl:sameAs
          http://www.serena.ac.uk/users/robstewart



          Some basic reasoning
          @prefix foaf: <http://xmlns.com/foaf/0.1/> .
          @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
          @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

          <http://www.serena.ac.uk/users/robstewart> a foaf:Person;
             rdfs:comment "Tweets about GNU and FOSS, but mostly Real Ale";
             foaf:based_near <http://dbpedia.org/resource/Edinburgh>;
             foaf:depiction <http://www.macs.hw.ac.uk/~rs46/images/headshot.jpg>;
             foaf:name "Rob Stewart";
             foaf:topic_interest <http://dbpedia.org/resource/Semantic_web> .

           Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   15 / 32
RDF Authoring




Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   16 / 32
RDF Authoring
Discover me semantically




          A web tool that enables RDF authorship

          Encourages the use of URIs with auto-completion

          Provides the ability to
             Download your RDF to file
              Visualize your RDF connected to linked open data




           Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   17 / 32
RDF Authoring
Discover me semantically




           Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   18 / 32
RDF Authoring
Discover me semantically




           Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   19 / 32
Discover me Semantically
Go play




    http://serena.macs.hw.ac.uk/serena/discover-me-semantically/




          Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   20 / 32
Linked Open Data
What is it?




     Linked Open Data is real data
     published according to Semantic Web
     principles.




              Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   21 / 32
Linked Open Data
What is it?




     Europeana: example LOD service provider.

          An EU funded project to produce a multi-lingual online
          collection of millions of digitised items from European
          museums, libraries, archives and multi-media collections.


        . . . video by Europeana http://vimeo.com/36752317




              Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   22 / 32
Linked Open Data
What is it?
                                                                                                                                                                                                                        Linked
                                                                                                                                                                                                            LOV          User            Slideshare         tags2con
                                                                                                                                                                                          Audio
                                                                                                                                                                                                                       Feedback             2RDF            delicious
                                                                                                                                                                       Moseley          Scrobbler                                                                             Bricklink        Sussex
                                                                                                                                                                        Folk             (DBTune)                                                                                              Reading            St.
                                                                                                                                                       GTAA
                                                                                                                                      Magna-                                                                                                                                                    Lists          Andrews
                                                                                                                                                                                                                                Klapp-
                                                                                                                                       tune                                                                                     stuhl-                                                                         Resource           NTU
                                                                                                                       DB                                                                                                        club                                                                            Lists          Resource
                                                                                                                     Tropes                                                                                       Lotico                         Semantic        yovisto
                                                                                                                                                John                     Music                                                                                                     Man-                                           Lists
                                                                                                                                                                                              Music                                               Tweet                           chester
                                                                                                 Hellenic                                       Peel                     Brainz                                                                                                                                                                       NDL
                                                                                                                                               (DBTune)                  (Data                Brainz                                                                              Reading
                                                                                                                                                                                                                                                                                                                                                    subjects
                                                                                                  FBD                                                                                        (zitgist)                                                                             Lists                     Open
                                                                                                                 EUTC                                                  Incubator)                                                Linked
                                                                                Hellenic                                                                                                                                                                                                                    Library                    Open                           t4gm
                                                                                                                Produc-                                                                                                         Crunch-
                                                                                  PD                                               Surge                                                                       RDF                                                                                                                                                     info
                                                                                                                 tions
                                                                                                                                                       Discogs                                                                    base                                                                                                Library
                                                                                                                                   Radio                                                                                                          Ontos          Source Code
                                                                   Crime                                                                                                                                      ohloh                                                                          Plymouth                                 (Talis)
                                                                                                                                                         (Data                                                                                    News                                                                                                                            LEM
                                                                                                                                                                                                                                                                  Ecosystem                   Reading                                                   RAMEAU
                                                                  Reports                           business                                           Incubator)
                                                                                        Crime       data.gov.                                                                                                                                     Portal         Linked Data                    Lists                                                     SH
                                                                    UK                                                                                                      Music             Jamendo
                                                                                         (En-          uk
                                                                                                                                                                           Brainz             (DBtune)                                                                                                              LinkedL
                                                      Ox                               AKTing)                      FanHubz                                                                                                 gnoss                                                                                                                                                                  ntnusc
                                                                                                                                                                          (DBTune)                                                                                                    SSW                             CCN
                                                     Points                                                                                                                                                                                                                                                                             Thesau-
                                                                                                                                      Last.FM                                                              Poké-                                                                     Thesaur
                                                                            Popula-                                                    artists                                                             pédia                                     Didactal                          us                                                rus W                                    LIBRIS
                                                                           tion (En-                                                  (DBTune)                Last.FM                                                                                   ia                                               theses.                                                LCSH                                         Rådata
                                        reegle                                                research          patents                                                                                                                                                                                                       MARC
                                                                            AKTing)                                                                           (rdfize)                                                                                                    my                                fr                                                                                                nå!
                                                                                              data.gov.         data.go                                                                                                                                                                                                       Codes
                             Ren.
                                                           NHS                                   uk              v.uk                                                                                                 Good-                                             Experi-
                                                                                                                                                                                 Classical                                                                                                                                     List
                            Energy                         (En-                                                                                                                                                        win               flickr                          ment
                                                                                                                                                                                   (DB             Pokedex            Family                                                                                                                                                                                           Norwe-
                            Genera-                       AKTing)                Mortality                                           BBC                                                                                                wrappr                                            Sudoc                                               PSH
                                                                                                                                                                                  Tune)                                                                                                                                                                                                                                 gian
                                                                                  (En-
                             tors                                                                                                  Program                                                                                                                                                                                                                                                                              MeSH
                                                                                 AKTing)                                                                                                                                                              semantic
                                                                                                                                     mes                  BBC                                                                                                                                                IdRef                                                               GND
                                                                  CO2                         educatio          OpenEI                                                                                                                                web.org               SW
                                               Energy                                                                                                                                                                                                                                                        Sudoc                                           ndlna
                                                                Emission                      n.data.g                                                    Music                                                                                                            Dog                                                                                                                              VIAF
                     EEA                        (En-                                                                                                                     Chronic-                             Linked
                                                                  (En-                         ov.uk                                                                                                                            Portu-                                     Food                                                             UB
                                               AKTing)                                                                                                                     ling              Event             MDB
                                                                AKTing)                                                                                                                                                         guese                                                                                                      Mann-                                                                              Europeana
                                                                                                                                             BBC                         America             Media
                                                                                                                                                                                                                               DBpedia                                                                                     Calames         heim
                                                                                 Ord-                                       Recht-          Wildlife                                                                                                                                                                                                                      Deutsche
                     Open                                                                                                                                                                                                                          Revyu                                     DDC
                                                                                                           Openly           spraak.         Finder                                                                                                                                                                                                                           Bio-              lobid
                    Election                                                    nance
                                       legislation                                                          Local              nl                                                                                                                                     RDF                                                                                                  graphie
                                                                                                                                                                                                                                                                                                                                                                                          Resources                 NSZL               Swedish
                      Data                                                      Survey                                                                     Tele-                                                                                                                                            data                                            Ulm
           EU                                                                                                                                                                     New                                                                                 Book
                    Project           data.gov.uk                                                                                                         graphis                                                                                                                                           bnf.fr                                                                                                 Catalog              Open
          Insti-                                                                                                                                                                  York
                                                                                                                                                                                                    URI                                 Open                         Mashup                                                                                                                                                            Cultural
         tutions                                                                                                                                                                 Times                                 Greek                                                                                                            P20
                                                              UK Post-                                                                                                                             Burner                               Calais                                                                                                                                                                                         Heritage
                                                               codes                                                                                                                                                  DBpedia                                                                                                                                     ECS             Wiki
                                                                                              statistics                                                                                                                                                                                                                                                                                                  lobid
                      GovWILD                                                                 data.gov.                                 Taxon                                                                                                        iServe                                                                                                      South-                                  Organi-
                                                                                                                    LOIUS                                                                                                                                                                 BNB
      Brazilian
                                                                                                 uk                                    Concept                                                                                                                                                                                 ECS                               ampton                                  sations
                                                                                                                                                               Geo                 World                                                                                 OS                                 BibBase                                                                                                          STW            GESIS
        Poli-                           ESD                                                                                                                                                                                                                                                                                   South-                ECS
                                                                                                                                                              Names                Fact-                                                                                                                                                          (RKB
       ticians                         stan-         reference                                                                                                                                                                                                                                                                ampton
                                                                           data.gov.uk                                                                                             book              Freebase                                                                                                                                   Explorer)                                  Budapest
                                       dards         data.gov.                                                               NASA                                                                                                                                                                                             EPrints
                                                         uk                 intervals                                                                                                                                                                      Project                                                                                                        OAI
                       Lichfield                                                                     transport               (Data                                                                                              DBpedia                                       data
                                                                                                                                                                                                                                                           Guten-                                                                                                                                              Pisa
                        Spen-                                                                        data.gov.               Incu-                                                                                                                                            dcs                                                                                                                                             RESEX         Scholaro-
          ISTAT          ding                                                                                                bator)               Fishes                                                                                                    berg                              DBLP                 DBLP
                                                                                                        uk                                                            Geo
                                                                                                                                                                                                                                                                                                                                                                                                                                             meter
         Immi-                        Scotland                                                                                                   of Texas                                                                                                                                      (FU                 (L3S)
                                      Pupils &                                                                                                                                       Uberblic                                                                                                                                      DBLP
         gration                                                                                                                                                     Species                                                                                                                 Berlin)                                                                                      IRIT
                                       Exams                                                                        Euro-                                                                                    dbpedia                                                     data-                                                     (RKB
                                                     London                                                                                                                                                                                        TCM                                                                                                    ACM
                                                                                                                     stat                                                                                      lite                                                      open-                                                   Explorer)                                                                                            NVD
                                                     Gazette                                                        (FUB)                                                                                                                          Gene                                                                                                                                                       IBM
                            Traffic                                                                                                     Geo                                                                                                                              ac-uk
                           Scotland                                      TWC LOGD                Eurostat                                                                                                                       Daily               DIT
                                                                                                                                       Linked                                                                                                                                                                    UN/
         Data                                                                                                                                             UMBEL                                                                 Med                                                                ERA
                                                                                                                                        Data                                                                                                                                                                   LOCODE                                                                                                    DEPLOY
         Gov.ie                         CORDIS                                                                                                                             YAGO                                                                                                                                                                                                           New-
                                                                                                                                                                                                lingvoj                                                           Disea-
                                         (RKB                                                                                                                                                                                                                     some               SIDER                                                                         RAE2001                castle                                        LOCAH
                      CORDIS           Explorer)                                                                   Linked                                                                                                                                                                                                   Eurécom
                                                                                         Eurostat                                                                                                                                                 Drug                                                                                   CiteSeer                                                            Roma
                       (FUB)                                                                                    Sensor Data
                                                         GovTrack                       (Ontology                (Kno.e.sis)                                    Open                                                                              Bank                                                      Pfam                                                                                                         Course-
                                                                                         Central)                                          riese                                                           Enipedia
                                                                                                                                                                 Cyc              Lexvo                                      LinkedCT                                                                                                                                                                                     ware
                                          Linked                                                                                                                                                                                                                                          PDB
                                                                                                                                                                                                                                                                 UniProt                                                         VIVO
                   EURES                 EDGAR                                                                                                                                                                                                                                                                                                                                         dotAC
                                                                           US SEC                                                                                                                                                                                                                                               Indiana                ePrints                                                IEEE
                                        (Ontology                                                                                                                                             totl.net
                                                                         (rdfabout)
                                         Central)                                                                                                         WordNet                                                                                                                                                                                                                                                             RISKS
                                                                                                                                                           (VUA)                                                        Taxono               UniProt
                                                                                             US Census               EUNIS              Twarql                                                                                                                                                             HGNC
                                                      Semantic                                                                                                               Cornetto                                                        (Bio2RDF)
                                                                                             (rdfabout)                                                                                                                   my                                                                                                                   VIVO
                            FTS                         XBRL                                                                                                                                                                                                         PRO-            ProDom                                 STITCH            Cornell                LAAS
                                                                                                                                                                                                                                                                     SITE                                                                                                                        KISTI                NSF
                                        Scotland
                                          Geo-                        GeoWord                                                                                                                       LODE
                                         graphy                         Net                                                                                WordNet           WordNet                                                                                                                                                                                            JISC
                                                                                                                                                            (W3C)              (RKB
                                                                                                                 Climbing
                                                                                                                                       Linked                                                                                       Affy-                                                                                                KEGG
                                                                                               SMC                                                                           Explorer)                              SISVU                                                                                            Pub                                    VIVO UF
                                                          Piedmont                                                                    GeoData                                                                                       metrix                                                                                               Drug
                                                                                                                                                                                                                                                                                                                                                                                                       ECCO-
                                          Finnish                                            Journals                                                                                                                                                 PubMed                    Gene                SGD             Chem
                                          Munici-
                                                          Accomo-               El                                                                                                           AGROV                                                                             Ontology                                                                                                                 TCP                           Media
                                                           dations                                                                                         Alpine                                                                                                                                                                                                             bible
                                          palities                           Viajero                                                                                                          OC
                                                                                                                                                            Ski                                                                                                                                                                                                             ontology
                                                                             Tourism                                                                                                                                                                                                                                                                 KEGG
                                                                                              Ocean
                                                                                                                                                           Austria
                                                                                                                                                                                                                                                                                                                                                    Enzyme                                     PBAC                           Geographic
                                                                                                                              Metoffice                                  GEMET                                             ChEMBL
                                                                 Italian                     Drilling                                                                                                                                        OMIM                                                                                KEGG
                                                                                                                               Weather                                                    Open
                                                                  public                     Codices            AEMET                                                                                      Linked                                                                         MGI                                   Pathway
                                                                 schools                                                      Forecasts
                                                                                                                                                                                          Data
                                                                                                                                                                                                            Open                                                  InterPro                                    GeneID                                                                                                          Publications
                                                                                                                                                       EARTh                             Thesau-                                                                                                                                                                           KEGG
                                                                               Turismo
                                                                                                                                                                                           rus             Colors                                                                                                                                                         Reaction
                                                                                  de
                                                                              Zaragoza                                                                                Product                                                Smart                                                                                                                           KEGG
                                                                                                                                                                                                                                                                                                                                                                                                             User-generated content
                                                                                                                                        Weather                         DB                                                    Link                                                                  Medi                                                     Glycan
                                                                                                     Janus                              Stations                                    Product                                                                                                         Care                                       KEGG
                                                                                                      AMP                                                                                                                                 UniParc             UniRef              UniSTS                                                                                                                                     Government
                                                                                                                                                                                     Types                Italian
                                                                                                                                                                                                                                                                                                                              Homolo           Com-
                                                                                                                          Yahoo!                       Airports                                          Museums                                                                                                                               pound
                                                                                                                                                                                    Ontology                          Google
                                                                                                                                                                                                                                                                                                                               Gene
                                                                                                                           Geo                                                                                          Art
                                                                                                                          Planet        National
                                                                                                                                                                                                                      wrapper
                                                                                                                                                                                                                                                                                                               Chem2                                                                                                        Cross-domain
                                                                                                                                         Radio-                                                                                                                                                               Bio2RDF
                                                                                                                                        activity                                                                                                                                                UniPath
                                                                                                                                           JP                        Sears                Open                                            Linked                               OGOLOD            way
                                                                                                                                                                                                                                                                                                                                                                                                                             Life sciences
                                                                                                                                                                                         Corpo-           Amster-                                          Reactome
                                                                                                                                                                                                           dam              medu-          Open
                                                                                                                                                                                          rates                                          Numbers
                                                                                                                                                                                                          Museum            cator
                                                                                                                                                                                                                                                                                                                                                                                                 As of September 2011




                                   Chasing Serendipity with Linked Open Data                                                                                                                                                             Rob Stewart, Jamie Forth & Diana Bental                                                                                                                                                                        23 / 32
DBpedia
What is it




             Extracts structured information from Wikipedia
             Links Wikipedia to other semantic datasets on the web
             Allows Wikipedia information to be used in new and
             interesting ways



             Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   24 / 32
Linked Open Data
How do I find it?




    The Data Hub is a community-maintained catalogue of datasets,
    managed by the Open Knowledge Foundation.

                                 http://thedatahub.org/

    Of these, the current 327 datasets making up the LOD cloud are
    listed here:

                   http://thedatahub.org/group/lodcloud




           Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   25 / 32
Linked Open Data
5* linked data




                    * Information available on the web under open license

                   ** Information as structured data (e.g. spreadsheets)

                  *** Non-proprietary formats (e.g. CSV not Excel)

                 **** URI identification allowing other dataset to link to
                      your data

            ***** Data linked to other dataset to provide context




           Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   26 / 32
The Semantic Web
Terminology




          Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   27 / 32
Linked Open Data in the Wild
Linked Geo Data



         OpenStreetMap (OSM): The free worldwide map.
                             http://www.openstreetmap.org/




          Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   28 / 32
Linked Open Data in the Wild
Linked Geo Data



         OpenStreetMap (OSM): The free worldwide map.
                             http://www.openstreetmap.org/


         Linked Open Data: OSM data as RDF – the canonical
         reference for all things spatial.
                More than 1 billion resources
                100 million ”ways” from OSM
                20 billion triples

                     http://browser.linkedgeodata.org/




          Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   28 / 32
Linked Open Data




  LOD makes it possible to make connections across heterogeneous
  data sources.
      Adds value to the data.
      Makes data more accessible and meaningful.




       Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   29 / 32
Linked Open Data
                Visualizations




Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   30 / 32
LOD Visualizations
LodLive




          Visual navigation of RDF resources

          Users can easily navigate between datasets

          Can interlink LOD resources with RDF files on the web




          Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   31 / 32
LOD Visualization
LodLive




    e.g.
                     http://dbpedia.org/resource/Dundee
                            http://goo.gl/ewxa3
           Chasing Serendipity with Linked Open Data   Rob Stewart, Jamie Forth & Diana Bental   32 / 32

Más contenido relacionado

La actualidad más candente

Unlocking doors: recent initiatives in open and linked data at National Libra...
Unlocking doors: recent initiatives in open and linked data at National Libra...Unlocking doors: recent initiatives in open and linked data at National Libra...
Unlocking doors: recent initiatives in open and linked data at National Libra...Gill Hamilton
 
Linked data radical change
Linked data   radical changeLinked data   radical change
Linked data radical changeRichard Wallis
 
Linked Open Data for Libraries
Linked Open Data for LibrariesLinked Open Data for Libraries
Linked Open Data for LibrariesLukas Koster
 
Linking Open Data with Drupal
Linking Open Data with DrupalLinking Open Data with Drupal
Linking Open Data with Drupalemmanuel_jamin
 
From the Semantic Web to the Web of Data: ten years of linking up
From the Semantic Web to the Web of Data: ten years of linking upFrom the Semantic Web to the Web of Data: ten years of linking up
From the Semantic Web to the Web of Data: ten years of linking upDavide Palmisano
 
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
 
06 gioca-ontologies
06 gioca-ontologies06 gioca-ontologies
06 gioca-ontologiesnidzokus
 
WTF is the Semantic Web and Linked Data
WTF is the Semantic Web and Linked DataWTF is the Semantic Web and Linked Data
WTF is the Semantic Web and Linked DataJuan Sequeda
 
Linked Data tutorial at Semtech 2012
Linked Data tutorial at Semtech 2012Linked Data tutorial at Semtech 2012
Linked Data tutorial at Semtech 2012Juan Sequeda
 
Introduction to Linked Data
Introduction to Linked DataIntroduction to Linked Data
Introduction to Linked DataJuan Sequeda
 
Get on the Linked Data Web!
Get on the Linked Data Web!Get on the Linked Data Web!
Get on the Linked Data Web!Armin Haller
 
Exploring the Semantic Web
Exploring the Semantic WebExploring the Semantic Web
Exploring the Semantic WebRoberto García
 
Persistent Identification: Easier Said than Done
Persistent Identification: Easier Said than DonePersistent Identification: Easier Said than Done
Persistent Identification: Easier Said than DoneHerbert Van de Sompel
 
Archives & the Semantic Web
Archives & the Semantic WebArchives & the Semantic Web
Archives & the Semantic WebMark Matienzo
 
Semantic Web Foundations for Representing, Reasoning, and Traversing Contextu...
Semantic Web Foundations for Representing, Reasoning, and Traversing Contextu...Semantic Web Foundations for Representing, Reasoning, and Traversing Contextu...
Semantic Web Foundations for Representing, Reasoning, and Traversing Contextu...Artificial Intelligence Institute at UofSC
 
From Record to Graph - Exposing a Legacy
From Record to Graph - Exposing a LegacyFrom Record to Graph - Exposing a Legacy
From Record to Graph - Exposing a LegacyRichard Wallis
 
WTF is the Semantic Web
WTF is the Semantic WebWTF is the Semantic Web
WTF is the Semantic WebJuan Sequeda
 

La actualidad más candente (20)

Unlocking doors: recent initiatives in open and linked data at National Libra...
Unlocking doors: recent initiatives in open and linked data at National Libra...Unlocking doors: recent initiatives in open and linked data at National Libra...
Unlocking doors: recent initiatives in open and linked data at National Libra...
 
Linked data radical change
Linked data   radical changeLinked data   radical change
Linked data radical change
 
Linked Open Data for Libraries
Linked Open Data for LibrariesLinked Open Data for Libraries
Linked Open Data for Libraries
 
Linking Open Data with Drupal
Linking Open Data with DrupalLinking Open Data with Drupal
Linking Open Data with Drupal
 
From the Semantic Web to the Web of Data: ten years of linking up
From the Semantic Web to the Web of Data: ten years of linking upFrom the Semantic Web to the Web of Data: ten years of linking up
From the Semantic Web to the Web of Data: ten years of linking up
 
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
 
06 gioca-ontologies
06 gioca-ontologies06 gioca-ontologies
06 gioca-ontologies
 
Library Linked Data
Library Linked DataLibrary Linked Data
Library Linked Data
 
WTF is the Semantic Web and Linked Data
WTF is the Semantic Web and Linked DataWTF is the Semantic Web and Linked Data
WTF is the Semantic Web and Linked Data
 
Linked Data tutorial at Semtech 2012
Linked Data tutorial at Semtech 2012Linked Data tutorial at Semtech 2012
Linked Data tutorial at Semtech 2012
 
Semantic Web Applications in Libraries: The Road to BIBFRAME
Semantic Web Applications in Libraries: The Road to BIBFRAMESemantic Web Applications in Libraries: The Road to BIBFRAME
Semantic Web Applications in Libraries: The Road to BIBFRAME
 
Introduction to Linked Data
Introduction to Linked DataIntroduction to Linked Data
Introduction to Linked Data
 
Linked Data Tutorial
Linked Data TutorialLinked Data Tutorial
Linked Data Tutorial
 
Get on the Linked Data Web!
Get on the Linked Data Web!Get on the Linked Data Web!
Get on the Linked Data Web!
 
Exploring the Semantic Web
Exploring the Semantic WebExploring the Semantic Web
Exploring the Semantic Web
 
Persistent Identification: Easier Said than Done
Persistent Identification: Easier Said than DonePersistent Identification: Easier Said than Done
Persistent Identification: Easier Said than Done
 
Archives & the Semantic Web
Archives & the Semantic WebArchives & the Semantic Web
Archives & the Semantic Web
 
Semantic Web Foundations for Representing, Reasoning, and Traversing Contextu...
Semantic Web Foundations for Representing, Reasoning, and Traversing Contextu...Semantic Web Foundations for Representing, Reasoning, and Traversing Contextu...
Semantic Web Foundations for Representing, Reasoning, and Traversing Contextu...
 
From Record to Graph - Exposing a Legacy
From Record to Graph - Exposing a LegacyFrom Record to Graph - Exposing a Legacy
From Record to Graph - Exposing a Legacy
 
WTF is the Semantic Web
WTF is the Semantic WebWTF is the Semantic Web
WTF is the Semantic Web
 

Similar a Serendipity in Linked Open Data

Linked Data - the Future for Open Repositories?
Linked Data - the Future for Open Repositories?Linked Data - the Future for Open Repositories?
Linked Data - the Future for Open Repositories?Adrian Stevenson
 
Something about links
Something about linksSomething about links
Something about linksRoderic Page
 
Linked data presentation for libraries (COMO)
Linked data presentation for libraries (COMO)Linked data presentation for libraries (COMO)
Linked data presentation for libraries (COMO)robin fay
 
Linked data and semantic wikis
Linked data and semantic wikisLinked data and semantic wikis
Linked data and semantic wikisSören Auer
 
Linked Data Challenge and Opportunity
Linked Data Challenge and OpportunityLinked Data Challenge and Opportunity
Linked Data Challenge and OpportunityRichard Wallis
 
Usage of Linked Data: Introduction and Application Scenarios
Usage of Linked Data: Introduction and Application ScenariosUsage of Linked Data: Introduction and Application Scenarios
Usage of Linked Data: Introduction and Application ScenariosEUCLID project
 
Linked Data and Locah, UKSG2011
Linked Data and Locah, UKSG2011 Linked Data and Locah, UKSG2011
Linked Data and Locah, UKSG2011 Jane Stevenson
 
RDF and Open Linked Data, a first approach
RDF and Open Linked Data, a first approachRDF and Open Linked Data, a first approach
RDF and Open Linked Data, a first approachhorvadam
 
Metadata / Linked Data
Metadata / Linked DataMetadata / Linked Data
Metadata / Linked DataRichard Wallis
 
From Open Linked Data towards an Ecosystem of Interlinked Knowledge
From Open Linked Data towards an Ecosystem of Interlinked KnowledgeFrom Open Linked Data towards an Ecosystem of Interlinked Knowledge
From Open Linked Data towards an Ecosystem of Interlinked KnowledgeSören Auer
 
Informal presentation about RES
Informal presentation about RESInformal presentation about RES
Informal presentation about RESChristophe Guéret
 
Lodlam presentation v1.0 final al20151104
Lodlam presentation v1.0 final al20151104Lodlam presentation v1.0 final al20151104
Lodlam presentation v1.0 final al20151104Asa Letourneau
 
Linked data demystified:Practical efforts to transform CONTENTDM metadata int...
Linked data demystified:Practical efforts to transform CONTENTDM metadata int...Linked data demystified:Practical efforts to transform CONTENTDM metadata int...
Linked data demystified:Practical efforts to transform CONTENTDM metadata int...Cory Lampert
 
Linking Open Government Data at Scale
Linking Open Government Data at Scale Linking Open Government Data at Scale
Linking Open Government Data at Scale Bernadette Hyland-Wood
 
Information Extraction and Linked Data Cloud
Information Extraction and Linked Data CloudInformation Extraction and Linked Data Cloud
Information Extraction and Linked Data CloudDhaval Thakker
 
FAIR Data Prototype - Interoperability and FAIRness through a novel combinati...
FAIR Data Prototype - Interoperability and FAIRness through a novel combinati...FAIR Data Prototype - Interoperability and FAIRness through a novel combinati...
FAIR Data Prototype - Interoperability and FAIRness through a novel combinati...Mark Wilkinson
 

Similar a Serendipity in Linked Open Data (20)

NISO/DCMI Webinar: Schema.org and Linked Data: Complementary Approaches to Pu...
NISO/DCMI Webinar: Schema.org and Linked Data: Complementary Approaches to Pu...NISO/DCMI Webinar: Schema.org and Linked Data: Complementary Approaches to Pu...
NISO/DCMI Webinar: Schema.org and Linked Data: Complementary Approaches to Pu...
 
Linked Data - the Future for Open Repositories?
Linked Data - the Future for Open Repositories?Linked Data - the Future for Open Repositories?
Linked Data - the Future for Open Repositories?
 
Something about links
Something about linksSomething about links
Something about links
 
Linked data presentation for libraries (COMO)
Linked data presentation for libraries (COMO)Linked data presentation for libraries (COMO)
Linked data presentation for libraries (COMO)
 
Linked data and semantic wikis
Linked data and semantic wikisLinked data and semantic wikis
Linked data and semantic wikis
 
Linked Data Challenge and Opportunity
Linked Data Challenge and OpportunityLinked Data Challenge and Opportunity
Linked Data Challenge and Opportunity
 
Usage of Linked Data: Introduction and Application Scenarios
Usage of Linked Data: Introduction and Application ScenariosUsage of Linked Data: Introduction and Application Scenarios
Usage of Linked Data: Introduction and Application Scenarios
 
Linked Data and Locah, UKSG2011
Linked Data and Locah, UKSG2011 Linked Data and Locah, UKSG2011
Linked Data and Locah, UKSG2011
 
NISO/NFAIS Joint Virtual Conference: Connecting the Library to the Wider Wor...
NISO/NFAIS Joint Virtual Conference:  Connecting the Library to the Wider Wor...NISO/NFAIS Joint Virtual Conference:  Connecting the Library to the Wider Wor...
NISO/NFAIS Joint Virtual Conference: Connecting the Library to the Wider Wor...
 
RDF and Open Linked Data, a first approach
RDF and Open Linked Data, a first approachRDF and Open Linked Data, a first approach
RDF and Open Linked Data, a first approach
 
Metadata / Linked Data
Metadata / Linked DataMetadata / Linked Data
Metadata / Linked Data
 
From Open Linked Data towards an Ecosystem of Interlinked Knowledge
From Open Linked Data towards an Ecosystem of Interlinked KnowledgeFrom Open Linked Data towards an Ecosystem of Interlinked Knowledge
From Open Linked Data towards an Ecosystem of Interlinked Knowledge
 
Social web Ontologies
Social web OntologiesSocial web Ontologies
Social web Ontologies
 
Informal presentation about RES
Informal presentation about RESInformal presentation about RES
Informal presentation about RES
 
Lodlam presentation v1.0 final al20151104
Lodlam presentation v1.0 final al20151104Lodlam presentation v1.0 final al20151104
Lodlam presentation v1.0 final al20151104
 
Linked data demystified:Practical efforts to transform CONTENTDM metadata int...
Linked data demystified:Practical efforts to transform CONTENTDM metadata int...Linked data demystified:Practical efforts to transform CONTENTDM metadata int...
Linked data demystified:Practical efforts to transform CONTENTDM metadata int...
 
Linking Open Government Data at Scale
Linking Open Government Data at Scale Linking Open Government Data at Scale
Linking Open Government Data at Scale
 
Information Extraction and Linked Data Cloud
Information Extraction and Linked Data CloudInformation Extraction and Linked Data Cloud
Information Extraction and Linked Data Cloud
 
NISO Webinar: Library Linked Data: From Vision to Reality
NISO Webinar: Library Linked Data: From Vision to RealityNISO Webinar: Library Linked Data: From Vision to Reality
NISO Webinar: Library Linked Data: From Vision to Reality
 
FAIR Data Prototype - Interoperability and FAIRness through a novel combinati...
FAIR Data Prototype - Interoperability and FAIRness through a novel combinati...FAIR Data Prototype - Interoperability and FAIRness through a novel combinati...
FAIR Data Prototype - Interoperability and FAIRness through a novel combinati...
 

Último

Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
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
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 

Último (20)

Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
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?
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
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
 

Serendipity in Linked Open Data

  • 1. Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental Members of the SerenA development team 27th June, 2012 Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 1 / 32
  • 2. SerenA Project vision “The vision of the SerenA project is to transform research processes by proactively creating surprising connection opportunities. We will deliver novel technologies, methods and evaluation techniques for supporting serendipitous interactions in the research arena.” Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 2 / 32
  • 3. Introductions Design team Human factors team Dev team Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 3 / 32
  • 4. Aims of the workshop Introduce the basic concepts of the Semantic Web. Creating a semantic user profile. Introduce and explore Linked Open Data. Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 4 / 32
  • 5. SerenA A web of connectivity Where might SerenA find information about Places Universities Researchers Research domains . . . “Things” To connect people with pertinent and interesting ideas . . . and to each other through pathways of related areas Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 5 / 32
  • 6. SerenA A web of connectivity Where might SerenA find information about Places Universities Researchers Research domains . . . “Things” To connect people with pertinent and interesting ideas . . . and to each other through pathways of related areas The web! The worlds largest distributed information resource Evolving to become more meaningfully connected Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 5 / 32
  • 7. Evolution of the WWW Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 6 / 32
  • 8. The World Wide Web Legacy web <html> <body> <h1>About me</h1> This is a page describing me. <h2>My Interests</h2> <li> Football <li> Computer science <li> Jazz funk </body> </html> A distributed network of connected documents <html> jargon web browser rendering × Not machine readable × . . . Lacks deeper meaning Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 7 / 32
  • 9. SerenA WWW forecast Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 8 / 32
  • 10. The Semantic Web Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 9 / 32
  • 11. The Semantic Web Principles Building blocks are very simple! Describing resources with Resource Description Framework Subject the resource being described Property denotes traits or aspects of a resource Object the associated resource Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 10 / 32
  • 12. The Semantic Web Principles Building blocks are very simple! Describing resources with Resource Description Framework Subject the resource being described Property denotes traits or aspects of a resource Object the associated resource e.g. <Joe Bloggs> age "40" <Joe Bloggs> friend <Harry Hill> <Hary Hill> location <Edinburgh> Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 10 / 32
  • 13. The Semantic Web Terminology Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 11 / 32
  • 14. The Semantic Web Principles Unique Resource Identifier’s represent things http://www.serena.ac.uk/users/robstewart The same thing can have many URIs. The same thing can have different names in different data sources. http://www.macs.hw.ac.uk/~rs46/rob https://www.twitter.com/!#/robstewartUK http://www.serena.ac.uk/users/robstewart Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 12 / 32
  • 15. The Semantic Web Terminology Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 13 / 32
  • 16. The Semantic Web Semantic interlinking RDF on Rob’s home page http://www.macs.hw.ac.uk/~rs46/rob @prefix foaf: <http://xmlns.com/foaf/0.1/> . @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . <http://www.macs.hw.ac.uk/~rs46/rob> a foaf:Person; foaf:depiction <http://www.macs.hw.ac.uk/~rs46/images/headshot.jpg>; foaf:name "Rob Stewart"; foaf:topic_interest <http://dbpedia.org/resource/Semantic_web> . RDF available from Twitter https://www.twitter.com/!#/robstewartUK @prefix foaf: <http://xmlns.com/foaf/0.1/> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . <https://www.twitter.com/!#/robstewartUK> rdfs:comment "Tweets about GNU and FOSS, but mostly Real Ale"; foaf:based_near <http://dbpedia.org/resource/Edinburgh> . Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 14 / 32
  • 17. The Semantic Web Semantic inference We can link these together using owl:sameAs. http://www.macs.hw.ac.uk/~rs46/rob owl:sameAs https://www.twitter.com/!#/robstewartUK owl:sameAs http://www.serena.ac.uk/users/robstewart Some basic reasoning @prefix foaf: <http://xmlns.com/foaf/0.1/> . @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . <http://www.serena.ac.uk/users/robstewart> a foaf:Person; rdfs:comment "Tweets about GNU and FOSS, but mostly Real Ale"; foaf:based_near <http://dbpedia.org/resource/Edinburgh>; foaf:depiction <http://www.macs.hw.ac.uk/~rs46/images/headshot.jpg>; foaf:name "Rob Stewart"; foaf:topic_interest <http://dbpedia.org/resource/Semantic_web> . Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 15 / 32
  • 18. RDF Authoring Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 16 / 32
  • 19. RDF Authoring Discover me semantically A web tool that enables RDF authorship Encourages the use of URIs with auto-completion Provides the ability to Download your RDF to file Visualize your RDF connected to linked open data Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 17 / 32
  • 20. RDF Authoring Discover me semantically Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 18 / 32
  • 21. RDF Authoring Discover me semantically Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 19 / 32
  • 22. Discover me Semantically Go play http://serena.macs.hw.ac.uk/serena/discover-me-semantically/ Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 20 / 32
  • 23. Linked Open Data What is it? Linked Open Data is real data published according to Semantic Web principles. Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 21 / 32
  • 24. Linked Open Data What is it? Europeana: example LOD service provider. An EU funded project to produce a multi-lingual online collection of millions of digitised items from European museums, libraries, archives and multi-media collections. . . . video by Europeana http://vimeo.com/36752317 Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 22 / 32
  • 25. Linked Open Data What is it? Linked LOV User Slideshare tags2con Audio Feedback 2RDF delicious Moseley Scrobbler Bricklink Sussex Folk (DBTune) Reading St. GTAA Magna- Lists Andrews Klapp- tune stuhl- Resource NTU DB club Lists Resource Tropes Lotico Semantic yovisto John Music Man- Lists Music Tweet chester Hellenic Peel Brainz NDL (DBTune) (Data Brainz Reading subjects FBD (zitgist) Lists Open EUTC Incubator) Linked Hellenic Library Open t4gm Produc- Crunch- PD Surge RDF info tions Discogs base Library Radio Ontos Source Code Crime ohloh Plymouth (Talis) (Data News LEM Ecosystem Reading RAMEAU Reports business Incubator) Crime data.gov. Portal Linked Data Lists SH UK Music Jamendo (En- uk Brainz (DBtune) LinkedL Ox AKTing) FanHubz gnoss ntnusc (DBTune) SSW CCN Points Thesau- Last.FM Poké- Thesaur Popula- artists pédia Didactal us rus W LIBRIS tion (En- (DBTune) Last.FM ia theses. LCSH Rådata reegle research patents MARC AKTing) (rdfize) my fr nå! data.gov. data.go Codes Ren. NHS uk v.uk Good- Experi- Classical List Energy (En- win flickr ment (DB Pokedex Family Norwe- Genera- AKTing) Mortality BBC wrappr Sudoc PSH Tune) gian (En- tors Program MeSH AKTing) semantic mes BBC IdRef GND CO2 educatio OpenEI web.org SW Energy Sudoc ndlna Emission n.data.g Music Dog VIAF EEA (En- Chronic- Linked (En- ov.uk Portu- Food UB AKTing) ling Event MDB AKTing) guese Mann- Europeana BBC America Media DBpedia Calames heim Ord- Recht- Wildlife Deutsche Open Revyu DDC Openly spraak. Finder Bio- lobid Election nance legislation Local nl RDF graphie Resources NSZL Swedish Data Survey Tele- data Ulm EU New Book Project data.gov.uk graphis bnf.fr Catalog Open Insti- York URI Open Mashup Cultural tutions Times Greek P20 UK Post- Burner Calais Heritage codes DBpedia ECS Wiki statistics lobid GovWILD data.gov. Taxon iServe South- Organi- LOIUS BNB Brazilian uk Concept ECS ampton sations Geo World OS BibBase STW GESIS Poli- ESD South- ECS Names Fact- (RKB ticians stan- reference ampton data.gov.uk book Freebase Explorer) Budapest dards data.gov. NASA EPrints uk intervals Project OAI Lichfield transport (Data DBpedia data Guten- Pisa Spen- data.gov. Incu- dcs RESEX Scholaro- ISTAT ding bator) Fishes berg DBLP DBLP uk Geo meter Immi- Scotland of Texas (FU (L3S) Pupils & Uberblic DBLP gration Species Berlin) IRIT Exams Euro- dbpedia data- (RKB London TCM ACM stat lite open- Explorer) NVD Gazette (FUB) Gene IBM Traffic Geo ac-uk Scotland TWC LOGD Eurostat Daily DIT Linked UN/ Data UMBEL Med ERA Data LOCODE DEPLOY Gov.ie CORDIS YAGO New- lingvoj Disea- (RKB some SIDER RAE2001 castle LOCAH CORDIS Explorer) Linked Eurécom Eurostat Drug CiteSeer Roma (FUB) Sensor Data GovTrack (Ontology (Kno.e.sis) Open Bank Pfam Course- Central) riese Enipedia Cyc Lexvo LinkedCT ware Linked PDB UniProt VIVO EURES EDGAR dotAC US SEC Indiana ePrints IEEE (Ontology totl.net (rdfabout) Central) WordNet RISKS (VUA) Taxono UniProt US Census EUNIS Twarql HGNC Semantic Cornetto (Bio2RDF) (rdfabout) my VIVO FTS XBRL PRO- ProDom STITCH Cornell LAAS SITE KISTI NSF Scotland Geo- GeoWord LODE graphy Net WordNet WordNet JISC (W3C) (RKB Climbing Linked Affy- KEGG SMC Explorer) SISVU Pub VIVO UF Piedmont GeoData metrix Drug ECCO- Finnish Journals PubMed Gene SGD Chem Munici- Accomo- El AGROV Ontology TCP Media dations Alpine bible palities Viajero OC Ski ontology Tourism KEGG Ocean Austria Enzyme PBAC Geographic Metoffice GEMET ChEMBL Italian Drilling OMIM KEGG Weather Open public Codices AEMET Linked MGI Pathway schools Forecasts Data Open InterPro GeneID Publications EARTh Thesau- KEGG Turismo rus Colors Reaction de Zaragoza Product Smart KEGG User-generated content Weather DB Link Medi Glycan Janus Stations Product Care KEGG AMP UniParc UniRef UniSTS Government Types Italian Homolo Com- Yahoo! Airports Museums pound Ontology Google Gene Geo Art Planet National wrapper Chem2 Cross-domain Radio- Bio2RDF activity UniPath JP Sears Open Linked OGOLOD way Life sciences Corpo- Amster- Reactome dam medu- Open rates Numbers Museum cator As of September 2011 Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 23 / 32
  • 26. DBpedia What is it Extracts structured information from Wikipedia Links Wikipedia to other semantic datasets on the web Allows Wikipedia information to be used in new and interesting ways Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 24 / 32
  • 27. Linked Open Data How do I find it? The Data Hub is a community-maintained catalogue of datasets, managed by the Open Knowledge Foundation. http://thedatahub.org/ Of these, the current 327 datasets making up the LOD cloud are listed here: http://thedatahub.org/group/lodcloud Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 25 / 32
  • 28. Linked Open Data 5* linked data * Information available on the web under open license ** Information as structured data (e.g. spreadsheets) *** Non-proprietary formats (e.g. CSV not Excel) **** URI identification allowing other dataset to link to your data ***** Data linked to other dataset to provide context Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 26 / 32
  • 29. The Semantic Web Terminology Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 27 / 32
  • 30. Linked Open Data in the Wild Linked Geo Data OpenStreetMap (OSM): The free worldwide map. http://www.openstreetmap.org/ Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 28 / 32
  • 31. Linked Open Data in the Wild Linked Geo Data OpenStreetMap (OSM): The free worldwide map. http://www.openstreetmap.org/ Linked Open Data: OSM data as RDF – the canonical reference for all things spatial. More than 1 billion resources 100 million ”ways” from OSM 20 billion triples http://browser.linkedgeodata.org/ Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 28 / 32
  • 32. Linked Open Data LOD makes it possible to make connections across heterogeneous data sources. Adds value to the data. Makes data more accessible and meaningful. Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 29 / 32
  • 33. Linked Open Data Visualizations Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 30 / 32
  • 34. LOD Visualizations LodLive Visual navigation of RDF resources Users can easily navigate between datasets Can interlink LOD resources with RDF files on the web Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 31 / 32
  • 35. LOD Visualization LodLive e.g. http://dbpedia.org/resource/Dundee http://goo.gl/ewxa3 Chasing Serendipity with Linked Open Data Rob Stewart, Jamie Forth & Diana Bental 32 / 32