ncompass live: linked data and libraries: what? why? how?

62
Linked Data and Libraries: What? Why? How? Emily Dust Nimsakont Nebraska Library Commission NCompass Live January 11, 2012 Photo credit: http://www.flickr.com/photos/mytudut/5197551003/

Upload: nebraska-library-commission

Post on 26-Jan-2015

109 views

Category:

Education


0 download

DESCRIPTION

In October of 2011, the Library of Congress released a statement outlining its efforts to move away from the MARC 21 format and toward another carrier for library data. According to the statement, "Linked Data principles and mechanisms" will be the focus of this project. You may be wondering, what is Linked Data? What could it mean for our library catalogs? How do we create Linked Data? In this session, Emily Nimsakont, the NLC’s Cataloging Librarian, will answer those questions and more.NCompass Live - Jan. 11, 2012.

TRANSCRIPT

Page 1: NCompass Live: Linked Data and Libraries: What? Why? How?

Linked Data and

Libraries:What? Why?

How?

Emily Dust NimsakontNebraska Library

CommissionNCompass Live January 11, 2012

Photo credit: http://www.flickr.com/photos/mytudut/5197551003/

Page 2: NCompass Live: Linked Data and Libraries: What? Why? How?

An announcement from the Library of Congress…

Photo credit: http://www.flickr.com/photos/alwright1/2613979675/

Page 3: NCompass Live: Linked Data and Libraries: What? Why? How?

“…the Library community’s data carrier, MARC, is ‘based on forty-year-old techniques for data management and is out of step with programming styles of today.’”

“…something new is now needed…”

“The new bibliographic framework project will be focused on…Linked Data principles and mechanisms…”

“A Bibliographic Framework for the Digital Age” http://www.loc.gov/marc/transition/news/framework-103111.html

Page 4: NCompass Live: Linked Data and Libraries: What? Why? How?

What is Linked Data?

Page 5: NCompass Live: Linked Data and Libraries: What? Why? How?

“It builds upon standard Web technologies such as HTTP and URIs, but rather than using them to serve web pages for human readers, it extends them to share information in a way that can be read automatically by computers.”“This enables data from different

sources to be connected and queried.”

“…linked data describes a method of publishing structured data so that it can be interlinked and become more useful.”

http://en.wikipedia.org/wiki/Linked_data

Page 6: NCompass Live: Linked Data and Libraries: What? Why? How?

Semantic Web vs. Linked Data

Page 7: NCompass Live: Linked Data and Libraries: What? Why? How?

web of documents vs.

web of data

Page 8: NCompass Live: Linked Data and Libraries: What? Why? How?

resource

resource

resource

resource

resource

links to

links to

links to

links to

links to

Page 9: NCompass Live: Linked Data and Libraries: What? Why? How?

data links to

links to

links to

links to

data data

data

datadata

datadata

datadata

data

datalinks to

Page 10: NCompass Live: Linked Data and Libraries: What? Why? How?

Relationships are key

Photo credit: http://www.flickr.com/photos/brenda-starr/3509344100/

Page 11: NCompass Live: Linked Data and Libraries: What? Why? How?

Encoded meaning

<h1>This is a heading.</h1><p>This is a paragraph.</p>

<h1>My Favorite Trees</h1><p>I like oak trees.</p>

<p>I also like maple trees.</p>

Page 12: NCompass Live: Linked Data and Libraries: What? Why? How?

Encoded meaning

<rdf:Descriptionrdf:about="http://www.recshop.fake/cd/Empire Burlesque">  <cd:artist>Bob Dylan</cd:artist>  <cd:country>USA</cd:country>  <cd:company>Columbia</cd:company>  <cd:price>10.90</cd:price>  <cd:year>1985</cd:year></rdf:Description>

http://www.w3schools.com/rdf/rdf_example.asp

Page 13: NCompass Live: Linked Data and Libraries: What? Why? How?

Links between entities

<rdf:Description rdf:about=“http://www4.wiwiss.fu-berlin.de/bookmashup/books/0375507256”>

<rev:hasReview rdf:resource=“http://www4.wiwiss.fu-berlin.de/bookmashup/reviews/0375507256_EditorialReview1”/>

<dc:creator rdf:resource=“http://www4.wiwiss.fu-berlin.de/bookmashup/persons/David+Mitchell”/>

<dc:format>Paperback</dc:format> <dc:identifier

rdf:resource=“urn:ISBN:0375507256”/> <dc:publisher>Random House Trade

Paperbacks</dc:publisher> <dc:title>Cloud Atlas: A Novel</dc:title></rdf:Description>

http://commonplace.net/2009/06/linked-data-for-libraries/

Page 14: NCompass Live: Linked Data and Libraries: What? Why? How?

data links to

links to

links to

links to

data data

data

datadata

datadata

datadata

data

datalinks to

Page 15: NCompass Live: Linked Data and Libraries: What? Why? How?

1. Data instead of documents2. Relationships are key3. Encoded meaning4. Links between entities

So what?

Page 16: NCompass Live: Linked Data and Libraries: What? Why? How?

Linked Data

makes the Web into a database.

Page 17: NCompass Live: Linked Data and Libraries: What? Why? How?

How does Linked Data

happen?

Page 18: NCompass Live: Linked Data and Libraries: What? Why? How?

Linked Data Principles

Tim Berners-Lee, “Linked Data-Design Issues.” http://www.w3.org/DesignIssues/LinkedData.html

Use URIs as names for

things

Use HTTP URIs so people can look up these

names

When someone looks up a URI, provide

useful information, using the standards

Include links to other URIs, so that they can discover

more things

Page 19: NCompass Live: Linked Data and Libraries: What? Why? How?

URIs

Uniform Resource Identifiers = unique identifiers

http://www.example.com/thing1

Page 20: NCompass Live: Linked Data and Libraries: What? Why? How?

RDF

Resource Description Framework

Describes relationships based on triples (statements):

subject-predicate-object

http://www.w3.org/RDF

Page 21: NCompass Live: Linked Data and Libraries: What? Why? How?

RDF

subject object

A Christmas

Carol

Charles Dickens

has author

predicate

Page 22: NCompass Live: Linked Data and Libraries: What? Why? How?

RDF Graph

Charles Dickens

A Christmas

Carol

has author has

publisher

Penguin

Page 23: NCompass Live: Linked Data and Libraries: What? Why? How?

RDF Graph with URIs

http://id.loc.gov/authorities/names/

n78087607/

http://example.org/books/2002275771

http://example.org/

hasAuthor

http://example.org/hasPublisher

http://example.org/publishers/12345

Page 24: NCompass Live: Linked Data and Libraries: What? Why? How?

RDF

<rdf:Description rdf:about=“http://example.org/books/2002275771”>

<dc:creator rdf:resource=“http://id.loc.gov/authorities/names/n78087607”/>

<dc:publisher ref:resource=“http://example.org/publishers/12345” />

</rdf:Description>

Page 25: NCompass Live: Linked Data and Libraries: What? Why? How?

Ontologies

An ontology is a vocabulary of specific terms to be used to

describe resources.

Sound familiar?

Page 26: NCompass Live: Linked Data and Libraries: What? Why? How?

5 Stars of Linked Open Data

★ Available on the web★★ Available as structured data★★★ Available in a non-proprietary format★★★★ Use open standards to identify things, so people can point at your stuff★★★★★ Link your data to other people’s data to provide context

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

Page 27: NCompass Live: Linked Data and Libraries: What? Why? How?

Linked OPEN Data

Photo credit: http://www.flickr.com/photos/eirikref/727551264/

Page 28: NCompass Live: Linked Data and Libraries: What? Why? How?

Why should libraries

care about Linked Data?

Page 29: NCompass Live: Linked Data and Libraries: What? Why? How?

Changes to bibliographic

data

Page 30: NCompass Live: Linked Data and Libraries: What? Why? How?

In traditional cataloging, a record is one package.

Author

Title

Bibliographic Record

Page 31: NCompass Live: Linked Data and Libraries: What? Why? How?

Bibliographic Record

Records can be exchanged, but there is no way to exchange the individual pieces of information within a record.

Bibliographic Record

Bibliographic Record

Page 32: NCompass Live: Linked Data and Libraries: What? Why? How?

Person

Is author of

Title

Bibliographic Record

With Linked Data, a bibliographic record is made up of many pieces of data.

And the relationships between these pieces of data are defined.

Page 33: NCompass Live: Linked Data and Libraries: What? Why? How?

Person

Is author of

Title

Bibliographic RecordThe boundaries of the record can be dissolved…

Page 34: NCompass Live: Linked Data and Libraries: What? Why? How?

Person

Is author of

Title

Bibliographic Record

…and the data can interact with other information on the Web…

Page 35: NCompass Live: Linked Data and Libraries: What? Why? How?

Person

Is author of

Title

Bibliographic Record

…and make use of other data on the web.

Page 36: NCompass Live: Linked Data and Libraries: What? Why? How?

New federated

search possibilities

Page 37: NCompass Live: Linked Data and Libraries: What? Why? How?

New ways of searching

our catalogs

Page 38: NCompass Live: Linked Data and Libraries: What? Why? How?

New homes for librarians’

skills

Page 39: NCompass Live: Linked Data and Libraries: What? Why? How?

Are there sources of

linked library data?

Page 40: NCompass Live: Linked Data and Libraries: What? Why? How?

http://id.loc.gov

Page 41: NCompass Live: Linked Data and Libraries: What? Why? How?
Page 42: NCompass Live: Linked Data and Libraries: What? Why? How?

http://viaf.org

Page 43: NCompass Live: Linked Data and Libraries: What? Why? How?

http://dewey.info/

Page 44: NCompass Live: Linked Data and Libraries: What? Why? How?

http://rdvocab.info/

Page 45: NCompass Live: Linked Data and Libraries: What? Why? How?
Page 46: NCompass Live: Linked Data and Libraries: What? Why? How?
Page 47: NCompass Live: Linked Data and Libraries: What? Why? How?

http://richard.cyganiak.de/2007/10/lod/

Page 48: NCompass Live: Linked Data and Libraries: What? Why? How?

What does Linked

Data look like?

Page 49: NCompass Live: Linked Data and Libraries: What? Why? How?

http://www.nines.org

Page 50: NCompass Live: Linked Data and Libraries: What? Why? How?
Page 51: NCompass Live: Linked Data and Libraries: What? Why? How?

http://www.civilwardata150.net/

Page 52: NCompass Live: Linked Data and Libraries: What? Why? How?

http://www.openlibrary.org

Page 53: NCompass Live: Linked Data and Libraries: What? Why? How?
Page 54: NCompass Live: Linked Data and Libraries: What? Why? How?

Resources

Page 55: NCompass Live: Linked Data and Libraries: What? Why? How?

The Thirty Minute Guide to RDF and Linked Data

by Ian Davis and Tom Heath

http://www.slideshare.net/iandavis/30-minute-guide-to-rdf-and-linked-

data

Page 56: NCompass Live: Linked Data and Libraries: What? Why? How?

Be Part of the Web - Not Just On It: Report of the Stanford Linked Data Workshop, 27 June - 1 July

2011

http://www.clir.org/pubs/reports/pub152/LinkedDataWorkshop.pdf

Page 57: NCompass Live: Linked Data and Libraries: What? Why? How?

Linked Open Data in Libraries, Archives, and

Museums

http://lod-lam.net/

Page 58: NCompass Live: Linked Data and Libraries: What? Why? How?

Managing Metadataby Laura Smart

http://library.caltech.edu/laura/

Page 59: NCompass Live: Linked Data and Libraries: What? Why? How?

ALA Linked Data Interest Group

http://connect.ala.org/node/142470

Page 60: NCompass Live: Linked Data and Libraries: What? Why? How?

Bibliographic Framework Transition Initiative

http://www.loc.gov/marc/transition/

Page 61: NCompass Live: Linked Data and Libraries: What? Why? How?

BIBFRAME listserv

http://listserv.loc.gov/listarch/bibframe.html

Page 62: NCompass Live: Linked Data and Libraries: What? Why? How?

Thank you!

Emily Dust NimsakontCataloging Librarian

Nebraska Library Commission

[email protected]

www.delicious.com/NLC_Reference/ncompasslive+linkeddata

www.slideshare.net/nebraskaccess