SlideShare a Scribd company logo
1 of 80
Open Library Data and Embrace
the World – Library Linked Data
Hao-Ren Ke (Claven)
University Librarian,
National Taiwan Normal University
clavenke@ntnu.edu.tw
1
Outline
Overview about Semantic Web and Linked
Data
Linked Data Life Cycle
Case Study 1: Linked Data in National Central
Library
Case Study 2: Movie Linked Data
Case 3: Linked OPAC (brief)
Conclusion and Future Plan
2
Taiwan, ROC
3
Taiwan Profile
Location: East Asia
Area: 36,000 square kilometers
Population: 23 million
Capital: Taipei City
Language: Mandarin (Chinese)
The most beautiful scenery in Taiwan is (kind)
people
Mountain view, ocean view… and delicious food
4
Nature
Culture
Pingxi Lantern
Festival
Kenting
coast
Taroko
National Park
Jadeite
Cabbage
Hualien
County
Night
Market
Traditional
Opera
Cuisine
Sticky Tofu
Steamed
Dumplings
Beef Noodle
Pearl
Tea
Oyster
omelette
Pineapple
Cake
Sun Cake
https://www.youtube.com/watch?v=HumOLtcZkjM
2019-ICLIS
7
2019-ICLIS (Cont.)
Library and Sustainability
Library Advocacy
Library Value
Open Access 2020
UN 2030 SDG
Library and Technology
Artificial Intelligence
Big Data
Digital Humanities
Digital Scholarship
Internet of Things
Linked Open Data 8
2019-ICLIS (Cont.)
Information Society
Digital Literacy
Information Literacy
Information Policy
Library and Communication
Privacy and EU General Data Protection
Regulation (GDPR)
Reading and Writing
9
2019-ICLIS (Cont.)
LIS Research, Education and Informatics
Health Informatics
Informetrics
Knowledge Organization
Learning Informatics
LIS Education
Science Curation
10
OVERVIEW ABOUT SEMANTIC
WEB AND LINKED DATA
11
Web Today
Information
repository.
Simplicity – HTML
Primarily for human
interpretation and
use.
12
Semantic Web
Semantic Web (SW) – a web of data that can
be processed directly or indirectly by
machines
The Semantic Web describes the properties
of things (resources) and relationships
between things
The Beatles was a popular band from Liverpool.
John Lennon was a member of the Beatles.
Data exchange, interoperation, reuse
13
Berners-Lee, T. (2000). Weaving the Web: The original design and
ultimate destiny of the World Wide Web. Harper Business, 1st edition.
Web vs. Semantic Web
14
Web Semantic Web
Linked Data and Its Principles
Best practice for realizing Semantic Web by
publishing and interlinking structured data on
the Web
Linked Data principles
Use URIs (Uniform Resource Identifier) as names
for things
Use HTTP URIs, so that a client (machine or
human reader) can look up those names
When someone looks up a URI, provide useful
information, using the standards (RDF, SPARQL)
Include links to other URIs, so that they can
discover more things
15http://linkeddatabook.com/editions/1.0/#
16
What is RDF?
Resource Description Framework
RDF is a language for representing information
about Web resources (Ah…metadata)
RDF can be used to represent information about
things that can be identified on the Web, even
when they cannot be directly retrieved on the Web
Intended for situations in which information needs
to be processed by applications, rather than being
only displayed to people. (Ah… Semantic Web…)
17
RDF Data Model
A model for describing
resources
named properties
property values
(resource, property, value)
18
Example
http://www.example.org/index.html has a
creation-date with value August 16, 1999
http://www.example.org/index.html has a
language with value English
Objects in RDF statements may be either URIrefs,
or constant values (called literals)
19
Triple Notation
Triple Notation of Example
<http://www.example.org/index.html>
<http://purl.org/dc/elements/1.1/creator>
<http://www.example.org/staffid/85740> .
<http://www.example.org/index.html>
<http://www.example.org/terms/creation-date> "August 16, 1999" .
<http://www.example.org/index.html>
<http://purl.org/dc/elements/1.1/language> "en" .
Shorthand Triple Notation – Giving prefix
(Namespace)
ex:index.html dc:creator exstaff:85740 .
ex:index.html exterms:creation-date "August 16, 1999" .
ex:index.html dc:language "en" .
Naming Things with URIs
20
21
Let’s Try http://biglynx.co.uk/people/matt-briggs
RDF in human-readable
format
22
<rdf:Description rdf:about="http://biglynx.co.uk/people/matt-briggs">
<foaf:topic_interest rdf:resource="http://dbpedia.org/resource/Wildlife_photography"/>
<foaf:name> Matt Briggs </foaf:name>
<foaf:isPrimaryTopicOf rdf:resource="http://biglynx.co.uk/people/matt-briggs.rdf"/>
<foaf:based_near rdf:resource="http://sws.geonames.org/3333125/"/>
<foaf:based_near rdf:resource="http://dbpedia.org/resource/Birmingham"/>
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
<rdf:type rdf:resource="http://biglynx.co.uk/vocab/productions#Director"/>
<rel:employedBy rdf:resource="http://biglynx.co.uk/people/dave-smith"/>
<productions:directed rdf:resource="http://biglynx.co.uk/productions/pacific-sharks"/>
</rdf:Description>
…
</rdf:RDF>
RDF in XML format
foaf, dc, skos, productions…: vocabulary
topic_interest, title, directed: vocabulary term
LOD Data Cloud as of June
2018
23
LOD Data Cloud Evolution
24
Five Stars of Linked Data
25
BIBFRAME Model
26
LINKED DATA LIFE CYCLE
27
Linked Data Life Cycle
28
Villazón-Terrazas, B., Vilches-Blázquez, L. M., Corcho, O., and Gómez-Pérez, A. (2011).
Methodological Guidelines for Publishing Government Linked Data. Linking Government Data. DOI: 10.1007/978-1-4614-1767-5_2.
Specification
Modelling
GenerationPublication
Exploitation
Implementation Plan
(As a Publisher)
Define your model
Resources, URI, properties, relationships
Select or define your metadata terms
(resource properties)
Select or define any controlled vocabularies
Each list of terms will be described in an RDF-
compatible format (such as SKOS)
Create links from your data (terms) to related
data (terms) on the Web (as a consumer)
29http://linkeddatabook.com/editions/1.0/#
https://schema.org/
30
Open Metadata Registry
31
id.loc.gov
32
DATA Hub
33
From Library Record to LOD –
Take a record
Field/attribute Value
Record ID 54321
Title Museum archives: an introduction
Author Wythe, Deborah
Date 2004
LCSH Museum archives
Media/GMD Electronic
Content form Text
34
From Library Record to LOD –
Disaggregate to single statements
Record Attribute Value
54321 (has) title Museum archives: an
introduction
54321 (has) author Wythe, Deborah
54321 (has) date 2004
54321 (has) LCSH Museum archives
54321 (has) media type Electronic
54321 (has) content form Text
35
From Library Record to LOD –
Replace record ID with URI
URI Attribute Value
mlx:54321 (has) title Museum archives: an
introduction
mlx:54321 (has) author Wythe, Deborah
mlx:54321 (has) date 2004
mlx:54321 (has) LCSH Museum archives
mlx:54321 (has) media type Electronic
mlx:54321 (has) content form Text
“mlx” = qname (xmlns) = shorthand for “http://MyLibraryX.com/”
36
From Library Record to LOD –
Replace attributes with URIs
URI URI Value
mlx:54321 isbd:P1004 Museum archives: an
introduction
mlx:54321 rdarole:author Wythe, Deborah
mlx:54321 isbd:P1018 2004
mlx:54321 dct:subject Museum archives
mlx:54321 isbd:P1003 Electronic
mlx:54321 isbd:P1001 Text
37
ISBD Elements
38
From Library Record to LOD –
Replace values with URIs
subject predicate object
mlx:54321 isbd:P1014 “Museum archives: an
introduction”
mlx:54321 rdarole:author viaf:31899419/#Wythe,+De
borah
mlx:54321 isbd:P1018 “2004”
mlx:54321 dct:subject lcsh:sh85088707#concept
mlx:54321 isbd:P1003 isbdmt:T1002
mlx:54321 isbd:P1001 isbdcf:T1009
39
DNB and Linked Data
40
DNB and Linked Data (Cont.)
41
DNB and Linked Data (Cont.)
42
CASE STUDY 1: LINKED DATA IN
NATIONAL CENTRAL LIBRARY
43
Datasets and Formats
ISO 2709
Chinese Name Authority Control(中文人名權威控
制): 262,668 records
List of Chinese Subject Terms(中文主題詞表):
19,317 records
SQL (bulk loading) and EXCEL (incremental)
New Classification Scheme For Chinese Libraries,
2007 ed.(中文圖書分類法2007版): 23,500 records
National Central Library Online Catalog(國家圖書
館館藏書目資料): 0.7 million records (out of 4
million holding data of NCL)
44
URI Design
45
Data source ID Field URI
Name authority System No. http://catld.ncl.edu.tw/authority/AC{System
No.}
Subject terms Serial No. http://catld.ncl.edu.tw/subject/SH{Serial No.}
Classification
scheme
Classification
No.
http://catld.ncl.edu.tw/classification/
{Classification No.}
NCL Catalog System No. http://catld.ncl.edu.tw/book/{System No.}
Metadata Terms –
Name Authority
46
Field MARC SKOS MADS
標 目 - 姓 / 名
Heading-
Personal Name
100$a skos:prefLabel mads:FullNameElement
生 卒 年 , 朝 代
Dates
associated with
a name
100$d mads:DateNameElement
學科領域100$c -
Titles and other
words
associated with
a name
372 $a- Field of
Activity
100$c skos:scopeNote mads:TermsOfAddressNameEl
ement
性別Gender 375$a mads:gender
Metadata Terms –
Name Authority (Cont.)
47
Field MARC SKOS MADS
變 異 標 目 - 姓 / 名
See From Tracing-
Personal Name
400$a skos:altLabel mads:hasVariant
mads: PersonalName
連 接 / 參 見 標 目
700 - Established
Heading Linking
Entry-Personal
Name
500 - See Also
From Tracing-
Personal Name
700/
500$a
skos:related mads:hasRelatedAuthority
mads:PersonalName
學 歷 / 勛 獎
373 - Associated
Group
373$a mads:has Affiliation
mads:Affiliation
參考資料/館藏資料
670 - Source Data
Found (R)
670$a mads:hasSource
mads:source
Metadata Terms –
Subject Terms
48
Field SKOS MADS
主要標目
Subject terms
skos:prefLabel mads: authoritativeLabel
原文
English Subject terms
skos:altLabel mads:hasVariant
mads:variantLabel
參考類號
Reference Classification
scheme
skos:notation
參見
Relatated term (see also)
skos:related mads:hasRelatedAuthority
用
use (see)
skos:prefLabel mads: authoritativeLabel
不用
used for (see from)
skos:altLabel mads:hasVariant
mads:variantLabel
Metadata Terms – New
Classification Scheme
49
Field skos mads
類號
Classification
scheme
skos:notation mads:code
類目
Class entry
skos:prefLabel mads:authoritativeLabel
原文
English class entry
skos:altLabel mads:hasVariant
mads:variantLabel
上層類目
Upper class entry
skos:broader mads:hasBroaderAuthroity
下層類目
Lower class entry
skos:narrower mads:hasNarrowerAuthority
Metadata Terms – NCL Catalog
50
Field bibo dc
書名Title dcterms:title dc:title
ISBN bibo:isbn dc:identifier
作者Author bibo:authorList dc:creator
出版者Publisher dcterms:publisher dc:publisher
分類號Classification
Scheme
skos:notation skos:notation
標題Subject terms dcterms:subject dc:subject
NCL Linked Data Service –
Home Page
51
A user can search New Classification Scheme, Subject Terms,
and/or Name Authority Control
NCL Linked Data Service –
Result List (Subject Terms)
52
NCL Linked Data Service –
Subject Term
53
Term Description
Download
NCL Linked Data Service –
Classification Scheme
54
Download
Broader
Current
NCL Linked Data Service –
MADS RDF/XML
(Name Authority Control)
55
NCL Linked Data Service –
Catalog (Result List)
56
NCL Linked Data Service –
Bibliographic Information
57
CASE STUDY 2 –
MOVIE LINKED DATA
58
Overview
Demo how to act as an linked data consumer
by integrating information from several linked-
data producers, including DBpedia,
LinkedMDB, DBtune, and British Library
The system is established by Drupal
Evaluated by System Usability Scale (SUS) –
72
59
Data Sets
Local DB – content from IMDb
Films, Directors, Actors
Linked Data Sources
Dbpedia – core of LOD cloud
LinkedMDB – complementary movie data
Dbtune + MusicBrainz – Movie OST (Original
Soundtrack)
British Library – bibliographic information
60
Movie-Related Metadata Terms
in DBpedia
61
Metadata Terms URI
rdfs:label http://www.w3.org/2000/01/rdf-schema#
dbpedia-owl:abstract http://dbpedia.org/ontology/abstract
dbpedia-owl:director http://dbpedia.org/ontology/director
dbpedia-owl:producer http://dbpedia.org/ontology/producer
dbpedia-owl:cinematography http://dbpedia.org/ontology/ciematography
dbpedia-owl:country http://dbpedia.org/ontology/country
dbpedia-owl:distributor http://dbpedia.org/ontology/distributor
dbpedia-owl:editing http://dbpedia.org/ontology/editing
dbpedia-owl:gross http://dbpedia.org/ontology/gross
dbpedia-owl:musicComposer http://dbpedia.org/ontology/musicComposer
dbpedia-owl:runtime http://dbpedia.org/ontology/runtime
dbpedia-owl:starring http://dbpedia.org/ontology/starring
dbpedia-owl:thumbnail http://dbpedia.org/ontology/thumbnail
dbpedia-owl:wikiPageID http://dbpedia.org/ontology/wikiPageID
dbpedia-owl:writer http://dbpedia.org/ontology/writer
rdf:type http://www.w3.org/1999/02/22-rdf-syntax-ns#
rdfs:comment http://www.w3.org/2000/01/rdf-schema#
foaf:name http://xmlns.com/foaf/0.1/
foaf:primaryTopic http://xmlns.com/foaf/0.1/
Metadata Terms in LinkedMDB
62
Metadata Terms URI
rdfs:label http://www.w3.org/2000/01/rdf-schema#
dc:title http://purl.org/dc/terms/title
dc:date http://purl.org/dc/terms/date
movie:actor http://data.linkedmdb.org/resource/movie/actor
movie:cinematographer http://data.linkedmdb.org/resource/movie/cinematogra
pher
movie:director http://data.linkedmdb.org/resource/movie/director
movie:editor http://data.linkedmdb.org/resource/movie/editor
movie:film_cut http://data.linkedmdb.org/resource/movie/film_cut
movie:film_of_distributor http://data.linkedmdb.org/resource/movie/film_of_distri
butor
movie:filmid http://data.linkedmdb.org/resource/movie/filmid
movie:initial_release_date http://data.linkedmdb.org/resource/movie/initial_releas
e_date
movie:music_contributor http://data.linkedmdb.org/resource/movie/music_contri
butor
foaf:made http://xmlns.com/foaf/0.1/made
foaf:page http://xmlns.com/foaf/0.1/page
Metadata Terms in DBtune
63
Metedata Terms URI
rdfs:label http://www.w3.org/2000/01/rdf-schema#
dc:title http://purl.org/dc/terms/date
mo:amazon_asin http://purl.org/ontology/mo/amazon_asin
mo:musicbrainz http://purl.org/ontology/mo/musicbrainz
mo:image http://purl.org/ontology/mo/image
URI Design
64
Node URI
Film http://140.122.104.69:8080/movie/{contenttype}/{moviename}
Director http://140.122.104.69:8080/movie/{contenttype}/{directorname}
Actor http://140.122.104.69:8080/movie/{contenttype}/{actorname}
http://140.122.104.69:8080/movie/film/Guardians_of_the_Galaxy
http://140.122.104.69:8080/movie/director/James_Gunn
http://140.122.104.69:8080/movie/actor/Chris_Pratt
Mapping between Drupal Fields
and Metadata Terms
65
Content Type Field Metadata Terms
Film
field_f_title rdfs:label
field_f_director dbpedia-owl:director
field_f_starring dbpedia-owl:starring
field_f_country dbpedia-owl:country
field_f_language dbpedia-owl:language
field_f_genre dbpedia-owl:genre
Director field_d_title rdfs:label
Actor field_a_title rdfs:label
Link Film/Director Fields with
Other Data Sources
66
Field Metadata Terms Data Source
field_f_abstract dbpedia-owl:abstract DBpedia
field_f_homepage dbpedia-owl:homepage DBpedia
field_f_runtime movie:runtime LinkedMDB
field_f_release_date movie:release_date LinkedMDB
field_f_pages foaf:page LinkedMDB
field_f_book dc:title British Library
field_f_isbn
bibo:isbn10
bibo:isbn13
British Library
British Library
field_f_amazon mo:amazon_asin DBtune
field_f_musicbrainz mo:musicbrainz DBtune
field_f_picture dbpedia-owl:thumbnail DBpedia
field_d_birthdate dbpedia-owl:birthDate DBpedia
field_d_birthplace dbpedia-owl:birthPlace DBpedia
field_d_nationality dbpedia-owl:nationality DBpedia
field_d_residence dbpedia-owl: residence DBpedia
field_d_abstract dbpedia-owl:abstract DBpedia
field_d_picture dbpedia-owl:thumbnail DBpedia
SPARQL Query for Movie Data
67
# DBpedia dataset!
PREFIX rdf:<http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX dbpedia-owl:<http://dbpedia.org/ontology/>
SELECTDISTINCT ?dbp ?d_homepage ?d_title ?d_abstract ?d_image
WHERE {
?dbp rdf:type dbpedia-owl:Film;
rdfs:label"{name}";
rdfs:label?d_title.
OPTIONAL {?dbp foaf:homepage ?d_homepage}
OPTIONAL {?dbp dbpedia-owl:abstract ?d_abstract}
OPTIONAL {?dbp dbpedia-owl:thumbnail ?d_image}
}
# LinkedMDB dataset!
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX movie: <http://data.linkedmdb.org/resource/movie/>
SELECT DISTINCT ?linkedmdb ?mdb_title ? mdb_release_date ?mdb_runtime
WHERE {
?linkedmdb rdfs:label "{name}";
rdfs:label mdb_title;
OPTIONAL {?linkedmdbmovie:initial_release_date ? mdb_release_date}
OPTIONAL {?linkedmdbmovie:runtime ? mdb _runtime}
}
SPARQL EndPoints
68
Data Sources SPARQL Endpoint
DBpedia http://dbpedia.org/sparql
LinkedMDB http://data.linkedmdb.org/sparql
British Library http://bnb.data.bl.uk/sparql
DBtune http://dbtune.org/musicbrainz/sparql
Linked Movie Data System
69
70
71
CASE 3: LINKED OPAC
(BRIEF)
72
Author Search
73
VIAF
LOCAL
74
LOCAL
DBpedia
AMAZON
LibraryThing
Conclusion
Conclusion
Linked Data is a set of best practices to realize
Semantic Web
Linked Data improves the access, discovery, and
integration of Web data by using open standards
Linked Data  Linked Open Data  Big Data
Why is Linked Data important for libraries?
People can more easily find library resources on
the Web
More creative applications based on library
metadata
Opportunities for cataloging efficiency and
innovation 75
Future Plan
Future Plan – Data Sets
NTNU archives (masters in art, education…)
Folkartist digital museums (Cloud Gate, U-Theatre)
Manga Linked Data
76
77
78
79
80

More Related Content

What's hot

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
 
Searching Heterogenous E Learning Resources
Searching Heterogenous E Learning ResourcesSearching Heterogenous E Learning Resources
Searching Heterogenous E Learning Resourcesimranlatif
 
2009 0807 Lod Gmod
2009 0807 Lod Gmod2009 0807 Lod Gmod
2009 0807 Lod GmodJun Zhao
 
LUCERO - Building the Open University Web of Linked Data
LUCERO - Building the Open University Web of Linked DataLUCERO - Building the Open University Web of Linked Data
LUCERO - Building the Open University Web of Linked DataMathieu d'Aquin
 
What Are Links in Linked Open Data? A Characterization and Evaluation of Link...
What Are Links in Linked Open Data? A Characterization and Evaluation of Link...What Are Links in Linked Open Data? A Characterization and Evaluation of Link...
What Are Links in Linked Open Data? A Characterization and Evaluation of Link...Armin Haller
 
Contributing to the Smart City Through Linked Library Data
Contributing to the Smart City Through Linked Library DataContributing to the Smart City Through Linked Library Data
Contributing to the Smart City Through Linked Library DataMarcia Zeng
 
SDA2013 Pundit: Creating, Exploring and Consuming Annotations
SDA2013 Pundit: Creating, Exploring and Consuming AnnotationsSDA2013 Pundit: Creating, Exploring and Consuming Annotations
SDA2013 Pundit: Creating, Exploring and Consuming AnnotationsMarco Grassi
 
Web 3 Mark Greaves
Web 3 Mark GreavesWeb 3 Mark Greaves
Web 3 Mark GreavesMediabistro
 
Corrib.org - OpenSource and Research
Corrib.org - OpenSource and ResearchCorrib.org - OpenSource and Research
Corrib.org - OpenSource and Researchadameq
 
ESWC SS 2013 - Tuesday Tutorial 1 Maribel Acosta and Barry Norton: Providing ...
ESWC SS 2013 - Tuesday Tutorial 1 Maribel Acosta and Barry Norton: Providing ...ESWC SS 2013 - Tuesday Tutorial 1 Maribel Acosta and Barry Norton: Providing ...
ESWC SS 2013 - Tuesday Tutorial 1 Maribel Acosta and Barry Norton: Providing ...eswcsummerschool
 
Open Annotation Collaboration Briefing
Open Annotation Collaboration BriefingOpen Annotation Collaboration Briefing
Open Annotation Collaboration BriefingTimothy Cole
 
Annotating Digital Texts in the Brown University Library
Annotating Digital Texts in the Brown University LibraryAnnotating Digital Texts in the Brown University Library
Annotating Digital Texts in the Brown University LibraryTimothy Cole
 
THGenius, rdf and open linked data for thesaurus management
THGenius, rdf and open linked data for thesaurus managementTHGenius, rdf and open linked data for thesaurus management
THGenius, rdf and open linked data for thesaurus management@CULT Srl
 
247th ACS Meeting: The Eureka Research Workbench
247th ACS Meeting: The Eureka Research Workbench247th ACS Meeting: The Eureka Research Workbench
247th ACS Meeting: The Eureka Research WorkbenchStuart Chalk
 
A Practical Ontology for the Large-Scale Modeling of Scholarly Artifacts and ...
A Practical Ontology for the Large-Scale Modeling of Scholarly Artifacts and ...A Practical Ontology for the Large-Scale Modeling of Scholarly Artifacts and ...
A Practical Ontology for the Large-Scale Modeling of Scholarly Artifacts and ...Marko Rodriguez
 

What's hot (20)

Intro nsl-sc-july
Intro nsl-sc-julyIntro nsl-sc-july
Intro nsl-sc-july
 
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
 
Searching Heterogenous E Learning Resources
Searching Heterogenous E Learning ResourcesSearching Heterogenous E Learning Resources
Searching Heterogenous E Learning Resources
 
2009 0807 Lod Gmod
2009 0807 Lod Gmod2009 0807 Lod Gmod
2009 0807 Lod Gmod
 
LUCERO - Building the Open University Web of Linked Data
LUCERO - Building the Open University Web of Linked DataLUCERO - Building the Open University Web of Linked Data
LUCERO - Building the Open University Web of Linked Data
 
What Are Links in Linked Open Data? A Characterization and Evaluation of Link...
What Are Links in Linked Open Data? A Characterization and Evaluation of Link...What Are Links in Linked Open Data? A Characterization and Evaluation of Link...
What Are Links in Linked Open Data? A Characterization and Evaluation of Link...
 
Contributing to the Smart City Through Linked Library Data
Contributing to the Smart City Through Linked Library DataContributing to the Smart City Through Linked Library Data
Contributing to the Smart City Through Linked Library Data
 
SDA2013 Pundit: Creating, Exploring and Consuming Annotations
SDA2013 Pundit: Creating, Exploring and Consuming AnnotationsSDA2013 Pundit: Creating, Exploring and Consuming Annotations
SDA2013 Pundit: Creating, Exploring and Consuming Annotations
 
Linked sensor data
Linked sensor dataLinked sensor data
Linked sensor data
 
Web 3 Mark Greaves
Web 3 Mark GreavesWeb 3 Mark Greaves
Web 3 Mark Greaves
 
Corrib.org - OpenSource and Research
Corrib.org - OpenSource and ResearchCorrib.org - OpenSource and Research
Corrib.org - OpenSource and Research
 
NISO/DCMI Webinar: International Bibliographic Standards, Linked Data, and th...
NISO/DCMI Webinar: International Bibliographic Standards, Linked Data, and th...NISO/DCMI Webinar: International Bibliographic Standards, Linked Data, and th...
NISO/DCMI Webinar: International Bibliographic Standards, Linked Data, and th...
 
ESWC SS 2013 - Tuesday Tutorial 1 Maribel Acosta and Barry Norton: Providing ...
ESWC SS 2013 - Tuesday Tutorial 1 Maribel Acosta and Barry Norton: Providing ...ESWC SS 2013 - Tuesday Tutorial 1 Maribel Acosta and Barry Norton: Providing ...
ESWC SS 2013 - Tuesday Tutorial 1 Maribel Acosta and Barry Norton: Providing ...
 
Open Annotation Collaboration Briefing
Open Annotation Collaboration BriefingOpen Annotation Collaboration Briefing
Open Annotation Collaboration Briefing
 
Annotating Digital Texts in the Brown University Library
Annotating Digital Texts in the Brown University LibraryAnnotating Digital Texts in the Brown University Library
Annotating Digital Texts in the Brown University Library
 
THGenius, rdf and open linked data for thesaurus management
THGenius, rdf and open linked data for thesaurus managementTHGenius, rdf and open linked data for thesaurus management
THGenius, rdf and open linked data for thesaurus management
 
247th ACS Meeting: The Eureka Research Workbench
247th ACS Meeting: The Eureka Research Workbench247th ACS Meeting: The Eureka Research Workbench
247th ACS Meeting: The Eureka Research Workbench
 
Expanding the content categories at JaLC
Expanding the content categories at JaLCExpanding the content categories at JaLC
Expanding the content categories at JaLC
 
Ejis
EjisEjis
Ejis
 
A Practical Ontology for the Large-Scale Modeling of Scholarly Artifacts and ...
A Practical Ontology for the Large-Scale Modeling of Scholarly Artifacts and ...A Practical Ontology for the Large-Scale Modeling of Scholarly Artifacts and ...
A Practical Ontology for the Large-Scale Modeling of Scholarly Artifacts and ...
 

Similar to Open Library Data and Embrace Linked Data

Toward Semantic Representation of Science in Electronic Laboratory Notebooks ...
Toward Semantic Representation of Science in Electronic Laboratory Notebooks ...Toward Semantic Representation of Science in Electronic Laboratory Notebooks ...
Toward Semantic Representation of Science in Electronic Laboratory Notebooks ...Stuart Chalk
 
Current metadata landscape in the library world Getaneh Alemu
Current metadata landscape in the library world Getaneh AlemuCurrent metadata landscape in the library world Getaneh Alemu
Current metadata landscape in the library world Getaneh AlemuGetaneh Alemu
 
Charleston 2012 - The Future of Serials in a Linked Data World
Charleston 2012 - The Future of Serials in a Linked Data WorldCharleston 2012 - The Future of Serials in a Linked Data World
Charleston 2012 - The Future of Serials in a Linked Data WorldProQuest
 
VRA_2015_CatalogingRoundup_Seneff
VRA_2015_CatalogingRoundup_SeneffVRA_2015_CatalogingRoundup_Seneff
VRA_2015_CatalogingRoundup_SeneffHeather Seneff
 
Linked data for librarians
Linked data for librariansLinked data for librarians
Linked data for librarianstrevorthornton
 
The Electronic Notebook Ontology
The Electronic Notebook OntologyThe Electronic Notebook Ontology
The Electronic Notebook OntologyStuart Chalk
 
Metadata lecture(9 17-14)
Metadata lecture(9 17-14)Metadata lecture(9 17-14)
Metadata lecture(9 17-14)mhb120
 
Poster RDAP13: Research Data in eCommons @ Cornell: Present and Future
Poster RDAP13: Research Data in eCommons @ Cornell: Present and FuturePoster RDAP13: Research Data in eCommons @ Cornell: Present and Future
Poster RDAP13: Research Data in eCommons @ Cornell: Present and FutureASIS&T
 
鏈結資料在圖書館的應用20131107
鏈結資料在圖書館的應用20131107鏈結資料在圖書館的應用20131107
鏈結資料在圖書館的應用20131107皓仁 柯
 
Cornell20080516
Cornell20080516Cornell20080516
Cornell20080516charper
 
Linked data 101: Getting Caught in the Semantic Web
Linked data 101: Getting Caught in the Semantic Web Linked data 101: Getting Caught in the Semantic Web
Linked data 101: Getting Caught in the Semantic Web Morgan Briles
 
A Linked Fusion of Things, Services, and Data to Support a Collaborative Data...
A Linked Fusion of Things, Services, and Data to Support a Collaborative Data...A Linked Fusion of Things, Services, and Data to Support a Collaborative Data...
A Linked Fusion of Things, Services, and Data to Support a Collaborative Data...Eric Stephan
 
Omitola birmingham cityuniv
Omitola birmingham cityunivOmitola birmingham cityuniv
Omitola birmingham cityunivTope Omitola
 
Presentation of LUCERO at EURECOM
Presentation of LUCERO at EURECOMPresentation of LUCERO at EURECOM
Presentation of LUCERO at EURECOMMathieu d'Aquin
 
2011linked science4mccuskermcguinnessfinal
2011linked science4mccuskermcguinnessfinal2011linked science4mccuskermcguinnessfinal
2011linked science4mccuskermcguinnessfinalDeborah McGuinness
 
Metadata as Linked Data for Research Data Repositories
Metadata as Linked Data for Research Data RepositoriesMetadata as Linked Data for Research Data Repositories
Metadata as Linked Data for Research Data Repositoriesandrea huang
 

Similar to Open Library Data and Embrace Linked Data (20)

Toward Semantic Representation of Science in Electronic Laboratory Notebooks ...
Toward Semantic Representation of Science in Electronic Laboratory Notebooks ...Toward Semantic Representation of Science in Electronic Laboratory Notebooks ...
Toward Semantic Representation of Science in Electronic Laboratory Notebooks ...
 
Current metadata landscape in the library world Getaneh Alemu
Current metadata landscape in the library world Getaneh AlemuCurrent metadata landscape in the library world Getaneh Alemu
Current metadata landscape in the library world Getaneh Alemu
 
Charleston 2012 - The Future of Serials in a Linked Data World
Charleston 2012 - The Future of Serials in a Linked Data WorldCharleston 2012 - The Future of Serials in a Linked Data World
Charleston 2012 - The Future of Serials in a Linked Data World
 
VRA_2015_CatalogingRoundup_Seneff
VRA_2015_CatalogingRoundup_SeneffVRA_2015_CatalogingRoundup_Seneff
VRA_2015_CatalogingRoundup_Seneff
 
Linked data for librarians
Linked data for librariansLinked data for librarians
Linked data for librarians
 
Introduction to the Semantic Web
Introduction to the Semantic WebIntroduction to the Semantic Web
Introduction to the Semantic Web
 
The Electronic Notebook Ontology
The Electronic Notebook OntologyThe Electronic Notebook Ontology
The Electronic Notebook Ontology
 
Resources, resources, resources: the three rs of the Web
Resources, resources, resources: the three rs of the WebResources, resources, resources: the three rs of the Web
Resources, resources, resources: the three rs of the Web
 
Metadata lecture(9 17-14)
Metadata lecture(9 17-14)Metadata lecture(9 17-14)
Metadata lecture(9 17-14)
 
Linked Data to Improve the OER Experience
Linked Data to Improve the OER ExperienceLinked Data to Improve the OER Experience
Linked Data to Improve the OER Experience
 
Poster RDAP13: Research Data in eCommons @ Cornell: Present and Future
Poster RDAP13: Research Data in eCommons @ Cornell: Present and FuturePoster RDAP13: Research Data in eCommons @ Cornell: Present and Future
Poster RDAP13: Research Data in eCommons @ Cornell: Present and Future
 
鏈結資料在圖書館的應用20131107
鏈結資料在圖書館的應用20131107鏈結資料在圖書館的應用20131107
鏈結資料在圖書館的應用20131107
 
Cornell20080516
Cornell20080516Cornell20080516
Cornell20080516
 
Linked data 101: Getting Caught in the Semantic Web
Linked data 101: Getting Caught in the Semantic Web Linked data 101: Getting Caught in the Semantic Web
Linked data 101: Getting Caught in the Semantic Web
 
Linked library data
Linked library dataLinked library data
Linked library data
 
A Linked Fusion of Things, Services, and Data to Support a Collaborative Data...
A Linked Fusion of Things, Services, and Data to Support a Collaborative Data...A Linked Fusion of Things, Services, and Data to Support a Collaborative Data...
A Linked Fusion of Things, Services, and Data to Support a Collaborative Data...
 
Omitola birmingham cityuniv
Omitola birmingham cityunivOmitola birmingham cityuniv
Omitola birmingham cityuniv
 
Presentation of LUCERO at EURECOM
Presentation of LUCERO at EURECOMPresentation of LUCERO at EURECOM
Presentation of LUCERO at EURECOM
 
2011linked science4mccuskermcguinnessfinal
2011linked science4mccuskermcguinnessfinal2011linked science4mccuskermcguinnessfinal
2011linked science4mccuskermcguinnessfinal
 
Metadata as Linked Data for Research Data Repositories
Metadata as Linked Data for Research Data RepositoriesMetadata as Linked Data for Research Data Repositories
Metadata as Linked Data for Research Data Repositories
 

More from 皓仁 柯

未來圖書資訊學教育--IFLA Guidelines
未來圖書資訊學教育--IFLA Guidelines未來圖書資訊學教育--IFLA Guidelines
未來圖書資訊學教育--IFLA Guidelines皓仁 柯
 
研究資料管理面面觀.pptx
研究資料管理面面觀.pptx研究資料管理面面觀.pptx
研究資料管理面面觀.pptx皓仁 柯
 
Simple template
Simple templateSimple template
Simple template皓仁 柯
 
國家圖書館「健全直轄市立圖書館營運體制及建立公共圖書館協調管理組織體系先期規劃」 期末報告
國家圖書館「健全直轄市立圖書館營運體制及建立公共圖書館協調管理組織體系先期規劃」 期末報告國家圖書館「健全直轄市立圖書館營運體制及建立公共圖書館協調管理組織體系先期規劃」 期末報告
國家圖書館「健全直轄市立圖書館營運體制及建立公共圖書館協調管理組織體系先期規劃」 期末報告皓仁 柯
 
Academic Libraries in a Post COVID-19 World: NTNU Case
Academic Libraries in a Post COVID-19 World: NTNU CaseAcademic Libraries in a Post COVID-19 World: NTNU Case
Academic Libraries in a Post COVID-19 World: NTNU Case皓仁 柯
 
同步與非同步教學案例分享 – 師生互動與學習者之間互動
同步與非同步教學案例分享 – 師生互動與學習者之間互動同步與非同步教學案例分享 – 師生互動與學習者之間互動
同步與非同步教學案例分享 – 師生互動與學習者之間互動皓仁 柯
 
新時代的公共圖書館
新時代的公共圖書館新時代的公共圖書館
新時代的公共圖書館皓仁 柯
 
人耶?鬼耶?談日本妖怪小說
人耶?鬼耶?談日本妖怪小說人耶?鬼耶?談日本妖怪小說
人耶?鬼耶?談日本妖怪小說皓仁 柯
 
學術傳播與學術圖書館
學術傳播與學術圖書館學術傳播與學術圖書館
學術傳播與學術圖書館皓仁 柯
 
新世代大學圖書館空間設計理念與空間改造經驗談
新世代大學圖書館空間設計理念與空間改造經驗談新世代大學圖書館空間設計理念與空間改造經驗談
新世代大學圖書館空間設計理念與空間改造經驗談皓仁 柯
 
批改學位論文的甘苦談
批改學位論文的甘苦談批改學位論文的甘苦談
批改學位論文的甘苦談皓仁 柯
 
電子資源使用評估
電子資源使用評估電子資源使用評估
電子資源使用評估皓仁 柯
 
模仿犯導讀~兼談推理小說
模仿犯導讀~兼談推理小說模仿犯導讀~兼談推理小說
模仿犯導讀~兼談推理小說皓仁 柯
 
我的金庸閱讀
我的金庸閱讀我的金庸閱讀
我的金庸閱讀皓仁 柯
 
開放取用發展趨勢
開放取用發展趨勢開放取用發展趨勢
開放取用發展趨勢皓仁 柯
 
Project counter r5
Project counter r5Project counter r5
Project counter r5皓仁 柯
 
Call for Participation Doctoral Consortium at International Forum 2019 ICADL ...
Call for Participation Doctoral Consortium at International Forum 2019 ICADL ...Call for Participation Doctoral Consortium at International Forum 2019 ICADL ...
Call for Participation Doctoral Consortium at International Forum 2019 ICADL ...皓仁 柯
 
資訊開放取用趨勢
資訊開放取用趨勢資訊開放取用趨勢
資訊開放取用趨勢皓仁 柯
 
數位保存的趨勢與實務
數位保存的趨勢與實務數位保存的趨勢與實務
數位保存的趨勢與實務皓仁 柯
 
Advocacy Actions of LAROC
Advocacy Actions of LAROCAdvocacy Actions of LAROC
Advocacy Actions of LAROC皓仁 柯
 

More from 皓仁 柯 (20)

未來圖書資訊學教育--IFLA Guidelines
未來圖書資訊學教育--IFLA Guidelines未來圖書資訊學教育--IFLA Guidelines
未來圖書資訊學教育--IFLA Guidelines
 
研究資料管理面面觀.pptx
研究資料管理面面觀.pptx研究資料管理面面觀.pptx
研究資料管理面面觀.pptx
 
Simple template
Simple templateSimple template
Simple template
 
國家圖書館「健全直轄市立圖書館營運體制及建立公共圖書館協調管理組織體系先期規劃」 期末報告
國家圖書館「健全直轄市立圖書館營運體制及建立公共圖書館協調管理組織體系先期規劃」 期末報告國家圖書館「健全直轄市立圖書館營運體制及建立公共圖書館協調管理組織體系先期規劃」 期末報告
國家圖書館「健全直轄市立圖書館營運體制及建立公共圖書館協調管理組織體系先期規劃」 期末報告
 
Academic Libraries in a Post COVID-19 World: NTNU Case
Academic Libraries in a Post COVID-19 World: NTNU CaseAcademic Libraries in a Post COVID-19 World: NTNU Case
Academic Libraries in a Post COVID-19 World: NTNU Case
 
同步與非同步教學案例分享 – 師生互動與學習者之間互動
同步與非同步教學案例分享 – 師生互動與學習者之間互動同步與非同步教學案例分享 – 師生互動與學習者之間互動
同步與非同步教學案例分享 – 師生互動與學習者之間互動
 
新時代的公共圖書館
新時代的公共圖書館新時代的公共圖書館
新時代的公共圖書館
 
人耶?鬼耶?談日本妖怪小說
人耶?鬼耶?談日本妖怪小說人耶?鬼耶?談日本妖怪小說
人耶?鬼耶?談日本妖怪小說
 
學術傳播與學術圖書館
學術傳播與學術圖書館學術傳播與學術圖書館
學術傳播與學術圖書館
 
新世代大學圖書館空間設計理念與空間改造經驗談
新世代大學圖書館空間設計理念與空間改造經驗談新世代大學圖書館空間設計理念與空間改造經驗談
新世代大學圖書館空間設計理念與空間改造經驗談
 
批改學位論文的甘苦談
批改學位論文的甘苦談批改學位論文的甘苦談
批改學位論文的甘苦談
 
電子資源使用評估
電子資源使用評估電子資源使用評估
電子資源使用評估
 
模仿犯導讀~兼談推理小說
模仿犯導讀~兼談推理小說模仿犯導讀~兼談推理小說
模仿犯導讀~兼談推理小說
 
我的金庸閱讀
我的金庸閱讀我的金庸閱讀
我的金庸閱讀
 
開放取用發展趨勢
開放取用發展趨勢開放取用發展趨勢
開放取用發展趨勢
 
Project counter r5
Project counter r5Project counter r5
Project counter r5
 
Call for Participation Doctoral Consortium at International Forum 2019 ICADL ...
Call for Participation Doctoral Consortium at International Forum 2019 ICADL ...Call for Participation Doctoral Consortium at International Forum 2019 ICADL ...
Call for Participation Doctoral Consortium at International Forum 2019 ICADL ...
 
資訊開放取用趨勢
資訊開放取用趨勢資訊開放取用趨勢
資訊開放取用趨勢
 
數位保存的趨勢與實務
數位保存的趨勢與實務數位保存的趨勢與實務
數位保存的趨勢與實務
 
Advocacy Actions of LAROC
Advocacy Actions of LAROCAdvocacy Actions of LAROC
Advocacy Actions of LAROC
 

Recently uploaded

Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Celine George
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Celine George
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)lakshayb543
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designMIPLM
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...Nguyen Thanh Tu Collection
 
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxBarangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxCarlos105
 
ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4MiaBumagat1
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONHumphrey A Beña
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17Celine George
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Celine George
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPCeline George
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxAnupkumar Sharma
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfJemuel Francisco
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfphamnguyenenglishnb
 
Culture Uniformity or Diversity IN SOCIOLOGY.pptx
Culture Uniformity or Diversity IN SOCIOLOGY.pptxCulture Uniformity or Diversity IN SOCIOLOGY.pptx
Culture Uniformity or Diversity IN SOCIOLOGY.pptxPoojaSen20
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...JhezDiaz1
 

Recently uploaded (20)

Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-design
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
 
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxBarangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
 
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptxYOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
 
ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17
 
Raw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptxRaw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptx
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERP
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
 
Culture Uniformity or Diversity IN SOCIOLOGY.pptx
Culture Uniformity or Diversity IN SOCIOLOGY.pptxCulture Uniformity or Diversity IN SOCIOLOGY.pptx
Culture Uniformity or Diversity IN SOCIOLOGY.pptx
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
 

Open Library Data and Embrace Linked Data

  • 1. Open Library Data and Embrace the World – Library Linked Data Hao-Ren Ke (Claven) University Librarian, National Taiwan Normal University clavenke@ntnu.edu.tw 1
  • 2. Outline Overview about Semantic Web and Linked Data Linked Data Life Cycle Case Study 1: Linked Data in National Central Library Case Study 2: Movie Linked Data Case 3: Linked OPAC (brief) Conclusion and Future Plan 2
  • 4. Taiwan Profile Location: East Asia Area: 36,000 square kilometers Population: 23 million Capital: Taipei City Language: Mandarin (Chinese) The most beautiful scenery in Taiwan is (kind) people Mountain view, ocean view… and delicious food 4
  • 8. 2019-ICLIS (Cont.) Library and Sustainability Library Advocacy Library Value Open Access 2020 UN 2030 SDG Library and Technology Artificial Intelligence Big Data Digital Humanities Digital Scholarship Internet of Things Linked Open Data 8
  • 9. 2019-ICLIS (Cont.) Information Society Digital Literacy Information Literacy Information Policy Library and Communication Privacy and EU General Data Protection Regulation (GDPR) Reading and Writing 9
  • 10. 2019-ICLIS (Cont.) LIS Research, Education and Informatics Health Informatics Informetrics Knowledge Organization Learning Informatics LIS Education Science Curation 10
  • 11. OVERVIEW ABOUT SEMANTIC WEB AND LINKED DATA 11
  • 12. Web Today Information repository. Simplicity – HTML Primarily for human interpretation and use. 12
  • 13. Semantic Web Semantic Web (SW) – a web of data that can be processed directly or indirectly by machines The Semantic Web describes the properties of things (resources) and relationships between things The Beatles was a popular band from Liverpool. John Lennon was a member of the Beatles. Data exchange, interoperation, reuse 13 Berners-Lee, T. (2000). Weaving the Web: The original design and ultimate destiny of the World Wide Web. Harper Business, 1st edition.
  • 14. Web vs. Semantic Web 14 Web Semantic Web
  • 15. Linked Data and Its Principles Best practice for realizing Semantic Web by publishing and interlinking structured data on the Web Linked Data principles Use URIs (Uniform Resource Identifier) as names for things Use HTTP URIs, so that a client (machine or human reader) can look up those names When someone looks up a URI, provide useful information, using the standards (RDF, SPARQL) Include links to other URIs, so that they can discover more things 15http://linkeddatabook.com/editions/1.0/#
  • 16. 16 What is RDF? Resource Description Framework RDF is a language for representing information about Web resources (Ah…metadata) RDF can be used to represent information about things that can be identified on the Web, even when they cannot be directly retrieved on the Web Intended for situations in which information needs to be processed by applications, rather than being only displayed to people. (Ah… Semantic Web…)
  • 17. 17 RDF Data Model A model for describing resources named properties property values (resource, property, value)
  • 18. 18 Example http://www.example.org/index.html has a creation-date with value August 16, 1999 http://www.example.org/index.html has a language with value English Objects in RDF statements may be either URIrefs, or constant values (called literals)
  • 19. 19 Triple Notation Triple Notation of Example <http://www.example.org/index.html> <http://purl.org/dc/elements/1.1/creator> <http://www.example.org/staffid/85740> . <http://www.example.org/index.html> <http://www.example.org/terms/creation-date> "August 16, 1999" . <http://www.example.org/index.html> <http://purl.org/dc/elements/1.1/language> "en" . Shorthand Triple Notation – Giving prefix (Namespace) ex:index.html dc:creator exstaff:85740 . ex:index.html exterms:creation-date "August 16, 1999" . ex:index.html dc:language "en" .
  • 22. 22 <rdf:Description rdf:about="http://biglynx.co.uk/people/matt-briggs"> <foaf:topic_interest rdf:resource="http://dbpedia.org/resource/Wildlife_photography"/> <foaf:name> Matt Briggs </foaf:name> <foaf:isPrimaryTopicOf rdf:resource="http://biglynx.co.uk/people/matt-briggs.rdf"/> <foaf:based_near rdf:resource="http://sws.geonames.org/3333125/"/> <foaf:based_near rdf:resource="http://dbpedia.org/resource/Birmingham"/> <rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/> <rdf:type rdf:resource="http://biglynx.co.uk/vocab/productions#Director"/> <rel:employedBy rdf:resource="http://biglynx.co.uk/people/dave-smith"/> <productions:directed rdf:resource="http://biglynx.co.uk/productions/pacific-sharks"/> </rdf:Description> … </rdf:RDF> RDF in XML format foaf, dc, skos, productions…: vocabulary topic_interest, title, directed: vocabulary term
  • 23. LOD Data Cloud as of June 2018 23
  • 24. LOD Data Cloud Evolution 24
  • 25. Five Stars of Linked Data 25
  • 27. LINKED DATA LIFE CYCLE 27
  • 28. Linked Data Life Cycle 28 Villazón-Terrazas, B., Vilches-Blázquez, L. M., Corcho, O., and Gómez-Pérez, A. (2011). Methodological Guidelines for Publishing Government Linked Data. Linking Government Data. DOI: 10.1007/978-1-4614-1767-5_2. Specification Modelling GenerationPublication Exploitation
  • 29. Implementation Plan (As a Publisher) Define your model Resources, URI, properties, relationships Select or define your metadata terms (resource properties) Select or define any controlled vocabularies Each list of terms will be described in an RDF- compatible format (such as SKOS) Create links from your data (terms) to related data (terms) on the Web (as a consumer) 29http://linkeddatabook.com/editions/1.0/#
  • 34. From Library Record to LOD – Take a record Field/attribute Value Record ID 54321 Title Museum archives: an introduction Author Wythe, Deborah Date 2004 LCSH Museum archives Media/GMD Electronic Content form Text 34
  • 35. From Library Record to LOD – Disaggregate to single statements Record Attribute Value 54321 (has) title Museum archives: an introduction 54321 (has) author Wythe, Deborah 54321 (has) date 2004 54321 (has) LCSH Museum archives 54321 (has) media type Electronic 54321 (has) content form Text 35
  • 36. From Library Record to LOD – Replace record ID with URI URI Attribute Value mlx:54321 (has) title Museum archives: an introduction mlx:54321 (has) author Wythe, Deborah mlx:54321 (has) date 2004 mlx:54321 (has) LCSH Museum archives mlx:54321 (has) media type Electronic mlx:54321 (has) content form Text “mlx” = qname (xmlns) = shorthand for “http://MyLibraryX.com/” 36
  • 37. From Library Record to LOD – Replace attributes with URIs URI URI Value mlx:54321 isbd:P1004 Museum archives: an introduction mlx:54321 rdarole:author Wythe, Deborah mlx:54321 isbd:P1018 2004 mlx:54321 dct:subject Museum archives mlx:54321 isbd:P1003 Electronic mlx:54321 isbd:P1001 Text 37
  • 39. From Library Record to LOD – Replace values with URIs subject predicate object mlx:54321 isbd:P1014 “Museum archives: an introduction” mlx:54321 rdarole:author viaf:31899419/#Wythe,+De borah mlx:54321 isbd:P1018 “2004” mlx:54321 dct:subject lcsh:sh85088707#concept mlx:54321 isbd:P1003 isbdmt:T1002 mlx:54321 isbd:P1001 isbdcf:T1009 39
  • 40. DNB and Linked Data 40
  • 41. DNB and Linked Data (Cont.) 41
  • 42. DNB and Linked Data (Cont.) 42
  • 43. CASE STUDY 1: LINKED DATA IN NATIONAL CENTRAL LIBRARY 43
  • 44. Datasets and Formats ISO 2709 Chinese Name Authority Control(中文人名權威控 制): 262,668 records List of Chinese Subject Terms(中文主題詞表): 19,317 records SQL (bulk loading) and EXCEL (incremental) New Classification Scheme For Chinese Libraries, 2007 ed.(中文圖書分類法2007版): 23,500 records National Central Library Online Catalog(國家圖書 館館藏書目資料): 0.7 million records (out of 4 million holding data of NCL) 44
  • 45. URI Design 45 Data source ID Field URI Name authority System No. http://catld.ncl.edu.tw/authority/AC{System No.} Subject terms Serial No. http://catld.ncl.edu.tw/subject/SH{Serial No.} Classification scheme Classification No. http://catld.ncl.edu.tw/classification/ {Classification No.} NCL Catalog System No. http://catld.ncl.edu.tw/book/{System No.}
  • 46. Metadata Terms – Name Authority 46 Field MARC SKOS MADS 標 目 - 姓 / 名 Heading- Personal Name 100$a skos:prefLabel mads:FullNameElement 生 卒 年 , 朝 代 Dates associated with a name 100$d mads:DateNameElement 學科領域100$c - Titles and other words associated with a name 372 $a- Field of Activity 100$c skos:scopeNote mads:TermsOfAddressNameEl ement 性別Gender 375$a mads:gender
  • 47. Metadata Terms – Name Authority (Cont.) 47 Field MARC SKOS MADS 變 異 標 目 - 姓 / 名 See From Tracing- Personal Name 400$a skos:altLabel mads:hasVariant mads: PersonalName 連 接 / 參 見 標 目 700 - Established Heading Linking Entry-Personal Name 500 - See Also From Tracing- Personal Name 700/ 500$a skos:related mads:hasRelatedAuthority mads:PersonalName 學 歷 / 勛 獎 373 - Associated Group 373$a mads:has Affiliation mads:Affiliation 參考資料/館藏資料 670 - Source Data Found (R) 670$a mads:hasSource mads:source
  • 48. Metadata Terms – Subject Terms 48 Field SKOS MADS 主要標目 Subject terms skos:prefLabel mads: authoritativeLabel 原文 English Subject terms skos:altLabel mads:hasVariant mads:variantLabel 參考類號 Reference Classification scheme skos:notation 參見 Relatated term (see also) skos:related mads:hasRelatedAuthority 用 use (see) skos:prefLabel mads: authoritativeLabel 不用 used for (see from) skos:altLabel mads:hasVariant mads:variantLabel
  • 49. Metadata Terms – New Classification Scheme 49 Field skos mads 類號 Classification scheme skos:notation mads:code 類目 Class entry skos:prefLabel mads:authoritativeLabel 原文 English class entry skos:altLabel mads:hasVariant mads:variantLabel 上層類目 Upper class entry skos:broader mads:hasBroaderAuthroity 下層類目 Lower class entry skos:narrower mads:hasNarrowerAuthority
  • 50. Metadata Terms – NCL Catalog 50 Field bibo dc 書名Title dcterms:title dc:title ISBN bibo:isbn dc:identifier 作者Author bibo:authorList dc:creator 出版者Publisher dcterms:publisher dc:publisher 分類號Classification Scheme skos:notation skos:notation 標題Subject terms dcterms:subject dc:subject
  • 51. NCL Linked Data Service – Home Page 51 A user can search New Classification Scheme, Subject Terms, and/or Name Authority Control
  • 52. NCL Linked Data Service – Result List (Subject Terms) 52
  • 53. NCL Linked Data Service – Subject Term 53 Term Description Download
  • 54. NCL Linked Data Service – Classification Scheme 54 Download Broader Current
  • 55. NCL Linked Data Service – MADS RDF/XML (Name Authority Control) 55
  • 56. NCL Linked Data Service – Catalog (Result List) 56
  • 57. NCL Linked Data Service – Bibliographic Information 57
  • 58. CASE STUDY 2 – MOVIE LINKED DATA 58
  • 59. Overview Demo how to act as an linked data consumer by integrating information from several linked- data producers, including DBpedia, LinkedMDB, DBtune, and British Library The system is established by Drupal Evaluated by System Usability Scale (SUS) – 72 59
  • 60. Data Sets Local DB – content from IMDb Films, Directors, Actors Linked Data Sources Dbpedia – core of LOD cloud LinkedMDB – complementary movie data Dbtune + MusicBrainz – Movie OST (Original Soundtrack) British Library – bibliographic information 60
  • 61. Movie-Related Metadata Terms in DBpedia 61 Metadata Terms URI rdfs:label http://www.w3.org/2000/01/rdf-schema# dbpedia-owl:abstract http://dbpedia.org/ontology/abstract dbpedia-owl:director http://dbpedia.org/ontology/director dbpedia-owl:producer http://dbpedia.org/ontology/producer dbpedia-owl:cinematography http://dbpedia.org/ontology/ciematography dbpedia-owl:country http://dbpedia.org/ontology/country dbpedia-owl:distributor http://dbpedia.org/ontology/distributor dbpedia-owl:editing http://dbpedia.org/ontology/editing dbpedia-owl:gross http://dbpedia.org/ontology/gross dbpedia-owl:musicComposer http://dbpedia.org/ontology/musicComposer dbpedia-owl:runtime http://dbpedia.org/ontology/runtime dbpedia-owl:starring http://dbpedia.org/ontology/starring dbpedia-owl:thumbnail http://dbpedia.org/ontology/thumbnail dbpedia-owl:wikiPageID http://dbpedia.org/ontology/wikiPageID dbpedia-owl:writer http://dbpedia.org/ontology/writer rdf:type http://www.w3.org/1999/02/22-rdf-syntax-ns# rdfs:comment http://www.w3.org/2000/01/rdf-schema# foaf:name http://xmlns.com/foaf/0.1/ foaf:primaryTopic http://xmlns.com/foaf/0.1/
  • 62. Metadata Terms in LinkedMDB 62 Metadata Terms URI rdfs:label http://www.w3.org/2000/01/rdf-schema# dc:title http://purl.org/dc/terms/title dc:date http://purl.org/dc/terms/date movie:actor http://data.linkedmdb.org/resource/movie/actor movie:cinematographer http://data.linkedmdb.org/resource/movie/cinematogra pher movie:director http://data.linkedmdb.org/resource/movie/director movie:editor http://data.linkedmdb.org/resource/movie/editor movie:film_cut http://data.linkedmdb.org/resource/movie/film_cut movie:film_of_distributor http://data.linkedmdb.org/resource/movie/film_of_distri butor movie:filmid http://data.linkedmdb.org/resource/movie/filmid movie:initial_release_date http://data.linkedmdb.org/resource/movie/initial_releas e_date movie:music_contributor http://data.linkedmdb.org/resource/movie/music_contri butor foaf:made http://xmlns.com/foaf/0.1/made foaf:page http://xmlns.com/foaf/0.1/page
  • 63. Metadata Terms in DBtune 63 Metedata Terms URI rdfs:label http://www.w3.org/2000/01/rdf-schema# dc:title http://purl.org/dc/terms/date mo:amazon_asin http://purl.org/ontology/mo/amazon_asin mo:musicbrainz http://purl.org/ontology/mo/musicbrainz mo:image http://purl.org/ontology/mo/image
  • 64. URI Design 64 Node URI Film http://140.122.104.69:8080/movie/{contenttype}/{moviename} Director http://140.122.104.69:8080/movie/{contenttype}/{directorname} Actor http://140.122.104.69:8080/movie/{contenttype}/{actorname} http://140.122.104.69:8080/movie/film/Guardians_of_the_Galaxy http://140.122.104.69:8080/movie/director/James_Gunn http://140.122.104.69:8080/movie/actor/Chris_Pratt
  • 65. Mapping between Drupal Fields and Metadata Terms 65 Content Type Field Metadata Terms Film field_f_title rdfs:label field_f_director dbpedia-owl:director field_f_starring dbpedia-owl:starring field_f_country dbpedia-owl:country field_f_language dbpedia-owl:language field_f_genre dbpedia-owl:genre Director field_d_title rdfs:label Actor field_a_title rdfs:label
  • 66. Link Film/Director Fields with Other Data Sources 66 Field Metadata Terms Data Source field_f_abstract dbpedia-owl:abstract DBpedia field_f_homepage dbpedia-owl:homepage DBpedia field_f_runtime movie:runtime LinkedMDB field_f_release_date movie:release_date LinkedMDB field_f_pages foaf:page LinkedMDB field_f_book dc:title British Library field_f_isbn bibo:isbn10 bibo:isbn13 British Library British Library field_f_amazon mo:amazon_asin DBtune field_f_musicbrainz mo:musicbrainz DBtune field_f_picture dbpedia-owl:thumbnail DBpedia field_d_birthdate dbpedia-owl:birthDate DBpedia field_d_birthplace dbpedia-owl:birthPlace DBpedia field_d_nationality dbpedia-owl:nationality DBpedia field_d_residence dbpedia-owl: residence DBpedia field_d_abstract dbpedia-owl:abstract DBpedia field_d_picture dbpedia-owl:thumbnail DBpedia
  • 67. SPARQL Query for Movie Data 67 # DBpedia dataset! PREFIX rdf:<http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbpedia-owl:<http://dbpedia.org/ontology/> SELECTDISTINCT ?dbp ?d_homepage ?d_title ?d_abstract ?d_image WHERE { ?dbp rdf:type dbpedia-owl:Film; rdfs:label"{name}"; rdfs:label?d_title. OPTIONAL {?dbp foaf:homepage ?d_homepage} OPTIONAL {?dbp dbpedia-owl:abstract ?d_abstract} OPTIONAL {?dbp dbpedia-owl:thumbnail ?d_image} } # LinkedMDB dataset! PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX movie: <http://data.linkedmdb.org/resource/movie/> SELECT DISTINCT ?linkedmdb ?mdb_title ? mdb_release_date ?mdb_runtime WHERE { ?linkedmdb rdfs:label "{name}"; rdfs:label mdb_title; OPTIONAL {?linkedmdbmovie:initial_release_date ? mdb_release_date} OPTIONAL {?linkedmdbmovie:runtime ? mdb _runtime} }
  • 68. SPARQL EndPoints 68 Data Sources SPARQL Endpoint DBpedia http://dbpedia.org/sparql LinkedMDB http://data.linkedmdb.org/sparql British Library http://bnb.data.bl.uk/sparql DBtune http://dbtune.org/musicbrainz/sparql
  • 69. Linked Movie Data System 69
  • 70. 70
  • 71. 71
  • 72. CASE 3: LINKED OPAC (BRIEF) 72
  • 75. Conclusion Conclusion Linked Data is a set of best practices to realize Semantic Web Linked Data improves the access, discovery, and integration of Web data by using open standards Linked Data  Linked Open Data  Big Data Why is Linked Data important for libraries? People can more easily find library resources on the Web More creative applications based on library metadata Opportunities for cataloging efficiency and innovation 75
  • 76. Future Plan Future Plan – Data Sets NTNU archives (masters in art, education…) Folkartist digital museums (Cloud Gate, U-Theatre) Manga Linked Data 76
  • 77. 77
  • 78. 78
  • 79. 79
  • 80. 80