SlideShare una empresa de Scribd logo
1 de 90
Descargar para leer sin conexión
Open Data

- Principles and Techniques -
VU Web Engineering / TU Wien
May 15th 2014
!
- Bernhard Haslhofer -
About me
• Data Scientist @ AIT - Austrian Institute of
Technology
• Previously
– Lecturer & Researcher @ Cornell University, NY,
USA
– Univ. Ass @ University of Vienna
– …
2
About me
• Research Interests
– Web-based information systems
• Structured Web Data
• Knowledge Graphs
• Data quality issues
• …
– Large-scale data analytics
• Machine learning
• Network analysis
• Information retrieval
3
My plan for today…
• Open Data – Principles and Examples
!
• Technique #1: Linked (Open) Data
!
• Technique #2: Microdata
!
• Open Data Activities in Austria
!
• Questions / Discussion
4
Open Data – Principles
!
“Open data is data that
can be freely used, reused
and redistributed by
anyone - subject only, at
most, to the requirement
to attribute and
sharealike.”
!
Open Data Handbook, 2012, Open Knowledge Foundation

http://opendatahandbook.org/
5
P#1: Availability and Access
Data must be available as a
whole and at no more than a
reasonable reproduction cost,
preferably by downloading over
the internet
!
Data must also be available in a
convenient and modifiable form
6http://opendefinition.org/
P#2: Reuse and Redistribution
Data must be provided
under terms that permit
reuse and redistribution
including the intermixing
with other datasets.
7http://opendefinition.org/
P#3: Universal Participation
Everyone must be able to use,
reuse and redistribute (no
discrimination)
!
No ‘non-commercial’
restrictions
8http://opendefinition.org/
Questions
!
• Do the open data principles sound
familiar (to CS students / software
engineers)?
!
• Any known “open data” examples?
9
Open Data Licensing
10
Public Domain Dedication
11
Open Data Movement
12
Source: http://www.flickr.com/photos/jamescridland/613445810/sizes/l/in/photo
Open Government Data
13
14
15
“Decades ago, the US Government made both
whether data and the GPS System freely
available. Since that time, American
entrepreneurs and innovators have utilised
these resources to create navigation systems,
location-based applications, …”
16
Open Government Data
17
18
19
Open Government Data
Developers	

Entrepreneurs	

Startups
Apps / Services
(Open) Data Journalism
20
21
(Open) Data Journalism
(Open) Data Journalism
22
http://datajournalismhandbook.org/
Open Data in Science
23
Open Data in Science / Open Access
24
How can publish and access structured data
on the Web?
My plan for today…
• Open Data – Principles and Examples
!
• Technique #1: Linked (Open) Data
!
• Technique #2: Microdata
!
• Open Data Activities in Austria
!
• Questions / Discussion
26
Linked Data
!
“A method of publishing structured data so
that it can be interlinked and become more
useful.
!
It builds upon standard Web technologies such
as HTTP, RDF 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”
!
[Bizer, Heath, Berners-Lee 2009]
27
Linked Open Data
28Open Data + Linked Data = Linked Open Data
Why Linked Data?
Why Linked Data?
Why Linked Data?
Web Architecture
Web Architecture
• A set of simple standards
– Uniform global addressing (URI)
– Uniform document encoding (HTML)
– Uniform transportation (HTTP)
• Hyperlinks connecting documents
• Works pretty well for accessing and exchanging
documents

How can publish and access structured data
on the Web?
Web Services and Web APIs
Source: http://www.blogperfume.com/new-27-circular-social-media-icons-in-3-sizes/
Web Services and Web APIs
• Each Web API has a proprietary interface
• Datasources must be known in advance
• Information entities (papers, authors,
subjects, etc.) are often not linked
37
Social Networking Sites as Walled Gardens by David Simonds
Linked Data Vision
• Publish and link structured data on the Web
• Create a single globally connected data
space based on the Web Architecture
Web of Linked Data
• A set of simple standards
– Uniform global addressing (URI)
– Uniform data model (RDF)
– Uniform transportation (HTTP)
• RDF links connecting entities
• Forms a global data space and facilitates
accessing and exchanging data

What is Linked Data?
• A method to build a Web of Data
• Architectural style, set of standards
Linking Open Data Project
• A W3C community project with the goal to extend the
Web with a data commons by publishing various open data
sets as RDF on the Web and by setting links between data
items from different sources
~$ curl -I -H "Accept: text/turtle" http://dbpedia.org/resource/The_Shining_(film)	

!
~$ curl -H "Accept: text/turtle" http://dbpedia.org/data/The_Shining_(film).ttl
~$ sudo apt-get install raptor (Linux)	

~$ brew install raptor (Mac OSX)	

~$ rapper http://dbpedia.org/resource/The_Shining_(film)
LINKED DATA TECHNOLOGIES
48
RDF
• A data model for representing data on the Web
• Several statements (triples) form a graph
RDF/XML, N3, Turtle, etc.
• Data formats for RDF resource
representations
• Used to transfer RDF data between apps
RDFS
• A language for describing the syntax
and semantics of schemas/vocabularies
in a machine-understandable way
http://dbpedia.org/ontology/
Film
http://dbpedia.org/ontology/
Work
rdfs:subClassOf
OWL
• A more expressive (formal) language for defining
the syntax and semantics of schemas/vocabularies
• Solves RDFS shortcomings but introduces quite
some complexity
SKOS
• A language for describing controlled vocabularies
(taxonomies, thesauri, classification schemes)
SPARQL
• A query language and protocol for
accessing RDF data on the Web
SELECT DISTINCT ?x	

WHERE {	

! ?x dcterms:subject 	

! <http://dbpedia.org/resource/Category:1980s_horror_films> .	

}
Database Systems Analogy...
Purpose Relational Database
Management Systems (RDBMS)
Linked Data
Technologies
Query
Schema
Definition
Language
Data
Representation
Identifiers
55
?
Database Systems Analogy...
Purpose Relational Database
Management Systems (RDBMS)
Linked Data
Technologies
Query SQL SPARQL
Schema
Definition
Language
SQL DDL RDFS / OWL
Data
Representation
Relational Model / Tables RDF / Graph
Identifiers Primary Keys (numeric
sequences)
URI
56
DBPedia Query Demo
57
SELECT ?person (count(DISTINCT ?spouse) as ?spouses)
where {	

	

?person a yago:AmericanFilmActors .	

?person dbpprop:spouse ?spouse .	

!
}	

ORDER BY DESC(?spouses)	

LIMIT 100
LINKED DATA EXAMPLES
58
65
66
Google Knowledge Graph
• Enables search for things (people, places)
that Google knows about
!
• Rooted in public sources such as Freebase,
Wikipedia, CIA World Factbook, etc.
– augmented to 500M objects, 3.5B facts and
relationship
!
• Next generation search (semantic index)
67
68
69
My plan for today…
• Open Data – Principles and Examples
!
• Technique #1: Linked (Open) Data
!
• Technique #2: Microdata
!
• Open Data Activities in Austria
!
• Questions / Discussion
70
Rich Snippets / Microdata
71
Microdata (HTML5)
• An HTML 5 specification used to nest structured
data within existing content on Web pages.
!
• Search engines and browsers can extract and
process Microdata and provide richer browsing
experience for users
Microdata Example
<div itemscope itemtype="http://schema.org/Person">	

!
! <span itemprop="name">Bernhard Haslhofer</span>,	

! <span itemprop="nickname">behas</span>. 	

! <div !itemprop="address”	

! !itemscope itemtype="http://schema.org/PostalAddress">	

! ! <span itemprop="streetAddress">301 College Avenue</span>	

! ! <span itemprop=”addressLocality">Ithaca</span>	

! ! <span itemprop=”addressCountry">United States</span>	

! </div>	

</div>
Schema.org
schema.org / Microdata example
<h1>Pirates of the Carribean: On Stranger Tides (2011)</h1>	

Jack Sparrow and Barbossa embark on a quest to find the elusive
fountain	

of youth, only to discover that Blackbeard and his daughter
are after it too.	

!
Director: Rob Marshall	

Writers: Ted Elliott, Terry Rossio, and 7 more credits	

Stars: Johnny Depp, Penelope Cruz, Ian McShane	

8/10 stars from 200 users. Reviews: 50.
schema.org / Microdata example
schema.org
• Defines
– a number of types (e.g, person), organized in
an inheritance hierarchy
– a number of properties (e.g., name)
• Extension mechanisms to extend the
schemas
• OWL representation: http://schema.org/
docs/schemaorg.owl
• http://schema.rdfs.org/index.html
78
Open Graph Protocol
81
My plan for today…
• Open Data – Principles and Examples
!
• Technique #1: Linked (Open) Data
!
• Technique #2: Microdata
!
• Open Data Activities in Austria
!
• Questions / Discussion
83
84
Open Government Data
85
Open Government Data
86
87
Open Government Data Apps
88
My plan for today…
• Open Data – The idea
!
• Implementation #1: Linked Open Data
!
• Implementation #2: Machine-readable HTML
tags
!
• Open Data Activities in Austria
!
• Questions / Discussion
89
Readings
!
• Tom Heath and Christian Bizer (2011) Linked Data:
Evolving the Web into a Global Data Space (1st
edition). Synthesis Lectures on the Semantic Web:
Theory and Technology, 1:1, 1-136. Morgan &
Claypool.
!
• Jason Ronallo: HTML5 Microdata and Schema.org

http://journal.code4lib.org/articles/6400

Más contenido relacionado

La actualidad más candente

Linked Data in Libraries
Linked Data in LibrariesLinked Data in Libraries
Linked Data in LibrariesCarl Hess
 
Build Narratives, Connect Artifacts: Linked Open Data for Cultural Heritage
Build Narratives, Connect Artifacts: Linked Open Data for Cultural HeritageBuild Narratives, Connect Artifacts: Linked Open Data for Cultural Heritage
Build Narratives, Connect Artifacts: Linked Open Data for Cultural HeritageOntotext
 
From Structured Data to Linked Open Governmental Data
From Structured Data to Linked Open Governmental DataFrom Structured Data to Linked Open Governmental Data
From Structured Data to Linked Open Governmental DataDongpo Deng
 
Towards digitizing scholarly communication
Towards digitizing scholarly communicationTowards digitizing scholarly communication
Towards digitizing scholarly communicationSören Auer
 
Keystone summer school_2015_miguel_antonio_ldcompression_4-joined
Keystone summer school_2015_miguel_antonio_ldcompression_4-joinedKeystone summer school_2015_miguel_antonio_ldcompression_4-joined
Keystone summer school_2015_miguel_antonio_ldcompression_4-joinedJoel Azzopardi
 
Linked Data (1st Linked Data Meetup Malmö)
Linked Data (1st Linked Data Meetup Malmö)Linked Data (1st Linked Data Meetup Malmö)
Linked Data (1st Linked Data Meetup Malmö)Anja Jentzsch
 
Hiberlink: Prototypes of pro-active approaches to support the archiving of we...
Hiberlink: Prototypes of pro-active approaches to support the archiving of we...Hiberlink: Prototypes of pro-active approaches to support the archiving of we...
Hiberlink: Prototypes of pro-active approaches to support the archiving of we...EDINA, University of Edinburgh
 
TPDL2013 tutorial linked data for digital libraries 2013-10-22
TPDL2013 tutorial linked data for digital libraries 2013-10-22TPDL2013 tutorial linked data for digital libraries 2013-10-22
TPDL2013 tutorial linked data for digital libraries 2013-10-22jodischneider
 
Introduction to linked data
Introduction to linked dataIntroduction to linked data
Introduction to linked dataLaura Po
 
Web Archives and the dream of the Personal Search Engine
Web Archives and the dream of the Personal Search EngineWeb Archives and the dream of the Personal Search Engine
Web Archives and the dream of the Personal Search EngineArjen de Vries
 
Linked Data: A short(-ish) introduction
Linked Data: A short(-ish) introductionLinked Data: A short(-ish) introduction
Linked Data: A short(-ish) introductionPete Johnston
 
Linked data for Enterprise Data Integration
Linked data for Enterprise Data IntegrationLinked data for Enterprise Data Integration
Linked data for Enterprise Data IntegrationSören Auer
 
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
 
Exploration, visualization and querying of linked open data sources
Exploration, visualization and querying of linked open data sourcesExploration, visualization and querying of linked open data sources
Exploration, visualization and querying of linked open data sourcesLaura Po
 

La actualidad más candente (17)

Linked Data in Libraries
Linked Data in LibrariesLinked Data in Libraries
Linked Data in Libraries
 
Build Narratives, Connect Artifacts: Linked Open Data for Cultural Heritage
Build Narratives, Connect Artifacts: Linked Open Data for Cultural HeritageBuild Narratives, Connect Artifacts: Linked Open Data for Cultural Heritage
Build Narratives, Connect Artifacts: Linked Open Data for Cultural Heritage
 
From Structured Data to Linked Open Governmental Data
From Structured Data to Linked Open Governmental DataFrom Structured Data to Linked Open Governmental Data
From Structured Data to Linked Open Governmental Data
 
Towards digitizing scholarly communication
Towards digitizing scholarly communicationTowards digitizing scholarly communication
Towards digitizing scholarly communication
 
Keystone summer school_2015_miguel_antonio_ldcompression_4-joined
Keystone summer school_2015_miguel_antonio_ldcompression_4-joinedKeystone summer school_2015_miguel_antonio_ldcompression_4-joined
Keystone summer school_2015_miguel_antonio_ldcompression_4-joined
 
Open data and linked data
Open data and linked dataOpen data and linked data
Open data and linked data
 
Linked Data (1st Linked Data Meetup Malmö)
Linked Data (1st Linked Data Meetup Malmö)Linked Data (1st Linked Data Meetup Malmö)
Linked Data (1st Linked Data Meetup Malmö)
 
Hiberlink: Prototypes of pro-active approaches to support the archiving of we...
Hiberlink: Prototypes of pro-active approaches to support the archiving of we...Hiberlink: Prototypes of pro-active approaches to support the archiving of we...
Hiberlink: Prototypes of pro-active approaches to support the archiving of we...
 
TPDL2013 tutorial linked data for digital libraries 2013-10-22
TPDL2013 tutorial linked data for digital libraries 2013-10-22TPDL2013 tutorial linked data for digital libraries 2013-10-22
TPDL2013 tutorial linked data for digital libraries 2013-10-22
 
Introduction to linked data
Introduction to linked dataIntroduction to linked data
Introduction to linked data
 
Web Archives and the dream of the Personal Search Engine
Web Archives and the dream of the Personal Search EngineWeb Archives and the dream of the Personal Search Engine
Web Archives and the dream of the Personal Search Engine
 
Linked Data: A short(-ish) introduction
Linked Data: A short(-ish) introductionLinked Data: A short(-ish) introduction
Linked Data: A short(-ish) introduction
 
Linked data for Enterprise Data Integration
Linked data for Enterprise Data IntegrationLinked data for Enterprise Data Integration
Linked data for Enterprise Data Integration
 
Linked Data Tutorial
Linked Data TutorialLinked Data Tutorial
Linked Data Tutorial
 
Implementing Linked Data in Low-Resource Conditions
Implementing Linked Data in Low-Resource ConditionsImplementing Linked Data in Low-Resource Conditions
Implementing Linked Data in Low-Resource Conditions
 
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
 
Exploration, visualization and querying of linked open data sources
Exploration, visualization and querying of linked open data sourcesExploration, visualization and querying of linked open data sources
Exploration, visualization and querying of linked open data sources
 

Similar a Open Data - Principles and Techniques

Big Data Europe SC6 WS 3: Ron Dekker, Director CESSDA European Open Science A...
Big Data Europe SC6 WS 3: Ron Dekker, Director CESSDA European Open Science A...Big Data Europe SC6 WS 3: Ron Dekker, Director CESSDA European Open Science A...
Big Data Europe SC6 WS 3: Ron Dekker, Director CESSDA European Open Science A...BigData_Europe
 
Scaling up Linked Data
Scaling up Linked DataScaling up Linked Data
Scaling up Linked DataMarin Dimitrov
 
Introduction to APIs and Linked Data
Introduction to APIs and Linked DataIntroduction to APIs and Linked Data
Introduction to APIs and Linked DataAdrian Stevenson
 
The Future of Semantics on the Web
The Future of Semantics on the WebThe Future of Semantics on the Web
The Future of Semantics on the WebJohn Domingue
 
Authors' and Publications' Citations knowledge base
Authors' and Publications' Citations knowledge base Authors' and Publications' Citations knowledge base
Authors' and Publications' Citations knowledge base Leila Zemmouchi-Ghomari
 
An Introduction to Semantic Web Technology
An Introduction to Semantic Web TechnologyAn Introduction to Semantic Web Technology
An Introduction to Semantic Web TechnologyAnkur Biswas
 
Linked Energy Data Generation
Linked Energy Data GenerationLinked Energy Data Generation
Linked Energy Data GenerationFilip Radulovic
 
CLARIAH Toogdag 2018: A distributed network of digital heritage information
CLARIAH Toogdag 2018: A distributed network of digital heritage informationCLARIAH Toogdag 2018: A distributed network of digital heritage information
CLARIAH Toogdag 2018: A distributed network of digital heritage informationEnno Meijers
 
Scaling up Linked Data
Scaling up Linked DataScaling up Linked Data
Scaling up Linked DataEUCLID project
 
Technologie Proche: Imagining the Archival Systems of Tomorrow With the Tools...
Technologie Proche: Imagining the Archival Systems of Tomorrow With the Tools...Technologie Proche: Imagining the Archival Systems of Tomorrow With the Tools...
Technologie Proche: Imagining the Archival Systems of Tomorrow With the Tools...Artefactual Systems - AtoM
 
One day workshop Linked Data and Semantic Web
One day workshop Linked Data and Semantic WebOne day workshop Linked Data and Semantic Web
One day workshop Linked Data and Semantic WebVictor de Boer
 
Linked Open Data for Cultural Heritage
Linked Open Data for Cultural HeritageLinked Open Data for Cultural Heritage
Linked Open Data for Cultural HeritageNoreen Whysel
 
Social Semantic (Sensor) Web
Social Semantic (Sensor) WebSocial Semantic (Sensor) Web
Social Semantic (Sensor) WebDavid Crowley
 
Linked Open Data_mlanet13
Linked Open Data_mlanet13Linked Open Data_mlanet13
Linked Open Data_mlanet13Kristi Holmes
 
FAIR data: LOUD for all audiences
FAIR data: LOUD for all audiencesFAIR data: LOUD for all audiences
FAIR data: LOUD for all audiencesAlessandro Adamou
 
Big Data and the Future of Publishing
Big Data and the Future of PublishingBig Data and the Future of Publishing
Big Data and the Future of PublishingAnita de Waard
 
lodlam summit session browsable linked data
lodlam summit session browsable linked datalodlam summit session browsable linked data
lodlam summit session browsable linked dataEnno Meijers
 

Similar a Open Data - Principles and Techniques (20)

Linked Data
Linked DataLinked Data
Linked Data
 
Ld4 dh tutorial
Ld4 dh tutorialLd4 dh tutorial
Ld4 dh tutorial
 
Big Data Europe SC6 WS 3: Ron Dekker, Director CESSDA European Open Science A...
Big Data Europe SC6 WS 3: Ron Dekker, Director CESSDA European Open Science A...Big Data Europe SC6 WS 3: Ron Dekker, Director CESSDA European Open Science A...
Big Data Europe SC6 WS 3: Ron Dekker, Director CESSDA European Open Science A...
 
Scaling up Linked Data
Scaling up Linked DataScaling up Linked Data
Scaling up Linked Data
 
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
 
Introduction to APIs and Linked Data
Introduction to APIs and Linked DataIntroduction to APIs and Linked Data
Introduction to APIs and Linked Data
 
The Future of Semantics on the Web
The Future of Semantics on the WebThe Future of Semantics on the Web
The Future of Semantics on the Web
 
Authors' and Publications' Citations knowledge base
Authors' and Publications' Citations knowledge base Authors' and Publications' Citations knowledge base
Authors' and Publications' Citations knowledge base
 
An Introduction to Semantic Web Technology
An Introduction to Semantic Web TechnologyAn Introduction to Semantic Web Technology
An Introduction to Semantic Web Technology
 
Linked Energy Data Generation
Linked Energy Data GenerationLinked Energy Data Generation
Linked Energy Data Generation
 
CLARIAH Toogdag 2018: A distributed network of digital heritage information
CLARIAH Toogdag 2018: A distributed network of digital heritage informationCLARIAH Toogdag 2018: A distributed network of digital heritage information
CLARIAH Toogdag 2018: A distributed network of digital heritage information
 
Scaling up Linked Data
Scaling up Linked DataScaling up Linked Data
Scaling up Linked Data
 
Technologie Proche: Imagining the Archival Systems of Tomorrow With the Tools...
Technologie Proche: Imagining the Archival Systems of Tomorrow With the Tools...Technologie Proche: Imagining the Archival Systems of Tomorrow With the Tools...
Technologie Proche: Imagining the Archival Systems of Tomorrow With the Tools...
 
One day workshop Linked Data and Semantic Web
One day workshop Linked Data and Semantic WebOne day workshop Linked Data and Semantic Web
One day workshop Linked Data and Semantic Web
 
Linked Open Data for Cultural Heritage
Linked Open Data for Cultural HeritageLinked Open Data for Cultural Heritage
Linked Open Data for Cultural Heritage
 
Social Semantic (Sensor) Web
Social Semantic (Sensor) WebSocial Semantic (Sensor) Web
Social Semantic (Sensor) Web
 
Linked Open Data_mlanet13
Linked Open Data_mlanet13Linked Open Data_mlanet13
Linked Open Data_mlanet13
 
FAIR data: LOUD for all audiences
FAIR data: LOUD for all audiencesFAIR data: LOUD for all audiences
FAIR data: LOUD for all audiences
 
Big Data and the Future of Publishing
Big Data and the Future of PublishingBig Data and the Future of Publishing
Big Data and the Future of Publishing
 
lodlam summit session browsable linked data
lodlam summit session browsable linked datalodlam summit session browsable linked data
lodlam summit session browsable linked data
 

Más de Bernhard Haslhofer

Decentralized Finance (DeFi) - Understanding Risks in an Emerging Financial P...
Decentralized Finance (DeFi) - Understanding Risks in an Emerging Financial P...Decentralized Finance (DeFi) - Understanding Risks in an Emerging Financial P...
Decentralized Finance (DeFi) - Understanding Risks in an Emerging Financial P...Bernhard Haslhofer
 
Token Systems, Payment Channels, and Corporate Currencies
Token Systems, Payment Channels, and Corporate CurrenciesToken Systems, Payment Channels, and Corporate Currencies
Token Systems, Payment Channels, and Corporate CurrenciesBernhard Haslhofer
 
Can a blockchain solve the trust problem?
Can a blockchain solve the trust problem?Can a blockchain solve the trust problem?
Can a blockchain solve the trust problem?Bernhard Haslhofer
 
Measurements in Cryptocurrency Networks
Measurements in Cryptocurrency NetworksMeasurements in Cryptocurrency Networks
Measurements in Cryptocurrency NetworksBernhard Haslhofer
 
Post-Bitcoin Cryptocurrencies, Off-Chain Transaction Channels, and Cryptocur...
 Post-Bitcoin Cryptocurrencies, Off-Chain Transaction Channels, and Cryptocur... Post-Bitcoin Cryptocurrencies, Off-Chain Transaction Channels, and Cryptocur...
Post-Bitcoin Cryptocurrencies, Off-Chain Transaction Channels, and Cryptocur...Bernhard Haslhofer
 
Insight Into Cryptocurrencies - Methods and Tools for Analyzing Blockchain-ba...
Insight Into Cryptocurrencies - Methods and Tools for Analyzing Blockchain-ba...Insight Into Cryptocurrencies - Methods and Tools for Analyzing Blockchain-ba...
Insight Into Cryptocurrencies - Methods and Tools for Analyzing Blockchain-ba...Bernhard Haslhofer
 
O Bitcoin Where Art Thou? An Introduction to Cryptocurrency Analytics
O Bitcoin Where Art Thou? An Introduction to Cryptocurrency AnalyticsO Bitcoin Where Art Thou? An Introduction to Cryptocurrency Analytics
O Bitcoin Where Art Thou? An Introduction to Cryptocurrency AnalyticsBernhard Haslhofer
 
Mind the Gap - Data Science Meets Software Engineering
Mind the Gap - Data Science Meets Software EngineeringMind the Gap - Data Science Meets Software Engineering
Mind the Gap - Data Science Meets Software EngineeringBernhard Haslhofer
 
GraphSense - Real-time Insight into Virtual Currency Ecosystems
GraphSense - Real-time Insight into Virtual Currency EcosystemsGraphSense - Real-time Insight into Virtual Currency Ecosystems
GraphSense - Real-time Insight into Virtual Currency EcosystemsBernhard Haslhofer
 
BITCOIN - De-anonymization and Money Laundering Detection Strategies
BITCOIN - De-anonymization and Money Laundering Detection StrategiesBITCOIN - De-anonymization and Money Laundering Detection Strategies
BITCOIN - De-anonymization and Money Laundering Detection StrategiesBernhard Haslhofer
 
Bitcoin - Introduction, Technical Aspects and Ongoing Developments
Bitcoin - Introduction, Technical Aspects and Ongoing DevelopmentsBitcoin - Introduction, Technical Aspects and Ongoing Developments
Bitcoin - Introduction, Technical Aspects and Ongoing DevelopmentsBernhard Haslhofer
 
Maphub und Pelagios: Anwendung von Linked Data in den Digitalen Geisteswissen...
Maphub und Pelagios: Anwendung von Linked Data in den Digitalen Geisteswissen...Maphub und Pelagios: Anwendung von Linked Data in den Digitalen Geisteswissen...
Maphub und Pelagios: Anwendung von Linked Data in den Digitalen Geisteswissen...Bernhard Haslhofer
 
The value of open data and the OpenGLAM network
The value of open data and the OpenGLAM networkThe value of open data and the OpenGLAM network
The value of open data and the OpenGLAM networkBernhard Haslhofer
 
Offene Daten im Kulturbereich - Die pragmatische Perspektive
Offene Daten im Kulturbereich - Die pragmatische PerspektiveOffene Daten im Kulturbereich - Die pragmatische Perspektive
Offene Daten im Kulturbereich - Die pragmatische PerspektiveBernhard Haslhofer
 
Semantic Tagging on Historical Maps
Semantic Tagging on Historical MapsSemantic Tagging on Historical Maps
Semantic Tagging on Historical MapsBernhard Haslhofer
 
OpenGLAM Intro @ OKFN.AT Meetup Graz
OpenGLAM Intro @ OKFN.AT Meetup GrazOpenGLAM Intro @ OKFN.AT Meetup Graz
OpenGLAM Intro @ OKFN.AT Meetup GrazBernhard Haslhofer
 
Semantic Tagging for old maps...and other things on the Web
Semantic Tagging for old maps...and other things on the WebSemantic Tagging for old maps...and other things on the Web
Semantic Tagging for old maps...and other things on the WebBernhard Haslhofer
 
ResourceSync: Leveraging Sitemaps for Resource Synchronization
ResourceSync: Leveraging Sitemaps for Resource SynchronizationResourceSync: Leveraging Sitemaps for Resource Synchronization
ResourceSync: Leveraging Sitemaps for Resource SynchronizationBernhard Haslhofer
 

Más de Bernhard Haslhofer (20)

Decentralized Finance (DeFi) - Understanding Risks in an Emerging Financial P...
Decentralized Finance (DeFi) - Understanding Risks in an Emerging Financial P...Decentralized Finance (DeFi) - Understanding Risks in an Emerging Financial P...
Decentralized Finance (DeFi) - Understanding Risks in an Emerging Financial P...
 
Token Systems, Payment Channels, and Corporate Currencies
Token Systems, Payment Channels, and Corporate CurrenciesToken Systems, Payment Channels, and Corporate Currencies
Token Systems, Payment Channels, and Corporate Currencies
 
Can a blockchain solve the trust problem?
Can a blockchain solve the trust problem?Can a blockchain solve the trust problem?
Can a blockchain solve the trust problem?
 
Measurements in Cryptocurrency Networks
Measurements in Cryptocurrency NetworksMeasurements in Cryptocurrency Networks
Measurements in Cryptocurrency Networks
 
Post-Bitcoin Cryptocurrencies, Off-Chain Transaction Channels, and Cryptocur...
 Post-Bitcoin Cryptocurrencies, Off-Chain Transaction Channels, and Cryptocur... Post-Bitcoin Cryptocurrencies, Off-Chain Transaction Channels, and Cryptocur...
Post-Bitcoin Cryptocurrencies, Off-Chain Transaction Channels, and Cryptocur...
 
Insight Into Cryptocurrencies - Methods and Tools for Analyzing Blockchain-ba...
Insight Into Cryptocurrencies - Methods and Tools for Analyzing Blockchain-ba...Insight Into Cryptocurrencies - Methods and Tools for Analyzing Blockchain-ba...
Insight Into Cryptocurrencies - Methods and Tools for Analyzing Blockchain-ba...
 
O Bitcoin Where Art Thou? An Introduction to Cryptocurrency Analytics
O Bitcoin Where Art Thou? An Introduction to Cryptocurrency AnalyticsO Bitcoin Where Art Thou? An Introduction to Cryptocurrency Analytics
O Bitcoin Where Art Thou? An Introduction to Cryptocurrency Analytics
 
Mind the Gap - Data Science Meets Software Engineering
Mind the Gap - Data Science Meets Software EngineeringMind the Gap - Data Science Meets Software Engineering
Mind the Gap - Data Science Meets Software Engineering
 
GraphSense - Real-time Insight into Virtual Currency Ecosystems
GraphSense - Real-time Insight into Virtual Currency EcosystemsGraphSense - Real-time Insight into Virtual Currency Ecosystems
GraphSense - Real-time Insight into Virtual Currency Ecosystems
 
BITCOIN - De-anonymization and Money Laundering Detection Strategies
BITCOIN - De-anonymization and Money Laundering Detection StrategiesBITCOIN - De-anonymization and Money Laundering Detection Strategies
BITCOIN - De-anonymization and Money Laundering Detection Strategies
 
Bitcoin - Introduction, Technical Aspects and Ongoing Developments
Bitcoin - Introduction, Technical Aspects and Ongoing DevelopmentsBitcoin - Introduction, Technical Aspects and Ongoing Developments
Bitcoin - Introduction, Technical Aspects and Ongoing Developments
 
Maphub und Pelagios: Anwendung von Linked Data in den Digitalen Geisteswissen...
Maphub und Pelagios: Anwendung von Linked Data in den Digitalen Geisteswissen...Maphub und Pelagios: Anwendung von Linked Data in den Digitalen Geisteswissen...
Maphub und Pelagios: Anwendung von Linked Data in den Digitalen Geisteswissen...
 
The value of open data and the OpenGLAM network
The value of open data and the OpenGLAM networkThe value of open data and the OpenGLAM network
The value of open data and the OpenGLAM network
 
Things, not Strings
Things, not StringsThings, not Strings
Things, not Strings
 
Offene Daten im Kulturbereich - Die pragmatische Perspektive
Offene Daten im Kulturbereich - Die pragmatische PerspektiveOffene Daten im Kulturbereich - Die pragmatische Perspektive
Offene Daten im Kulturbereich - Die pragmatische Perspektive
 
Semantic Tagging on Historical Maps
Semantic Tagging on Historical MapsSemantic Tagging on Historical Maps
Semantic Tagging on Historical Maps
 
The Story behind Maphub
The Story behind MaphubThe Story behind Maphub
The Story behind Maphub
 
OpenGLAM Intro @ OKFN.AT Meetup Graz
OpenGLAM Intro @ OKFN.AT Meetup GrazOpenGLAM Intro @ OKFN.AT Meetup Graz
OpenGLAM Intro @ OKFN.AT Meetup Graz
 
Semantic Tagging for old maps...and other things on the Web
Semantic Tagging for old maps...and other things on the WebSemantic Tagging for old maps...and other things on the Web
Semantic Tagging for old maps...and other things on the Web
 
ResourceSync: Leveraging Sitemaps for Resource Synchronization
ResourceSync: Leveraging Sitemaps for Resource SynchronizationResourceSync: Leveraging Sitemaps for Resource Synchronization
ResourceSync: Leveraging Sitemaps for Resource Synchronization
 

Último

08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 

Último (20)

08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 

Open Data - Principles and Techniques

  • 1. Open Data
 - Principles and Techniques - VU Web Engineering / TU Wien May 15th 2014 ! - Bernhard Haslhofer -
  • 2. About me • Data Scientist @ AIT - Austrian Institute of Technology • Previously – Lecturer & Researcher @ Cornell University, NY, USA – Univ. Ass @ University of Vienna – … 2
  • 3. About me • Research Interests – Web-based information systems • Structured Web Data • Knowledge Graphs • Data quality issues • … – Large-scale data analytics • Machine learning • Network analysis • Information retrieval 3
  • 4. My plan for today… • Open Data – Principles and Examples ! • Technique #1: Linked (Open) Data ! • Technique #2: Microdata ! • Open Data Activities in Austria ! • Questions / Discussion 4
  • 5. Open Data – Principles ! “Open data is data that can be freely used, reused and redistributed by anyone - subject only, at most, to the requirement to attribute and sharealike.” ! Open Data Handbook, 2012, Open Knowledge Foundation
 http://opendatahandbook.org/ 5
  • 6. P#1: Availability and Access Data must be available as a whole and at no more than a reasonable reproduction cost, preferably by downloading over the internet ! Data must also be available in a convenient and modifiable form 6http://opendefinition.org/
  • 7. P#2: Reuse and Redistribution Data must be provided under terms that permit reuse and redistribution including the intermixing with other datasets. 7http://opendefinition.org/
  • 8. P#3: Universal Participation Everyone must be able to use, reuse and redistribute (no discrimination) ! No ‘non-commercial’ restrictions 8http://opendefinition.org/
  • 9. Questions ! • Do the open data principles sound familiar (to CS students / software engineers)? ! • Any known “open data” examples? 9
  • 12. Open Data Movement 12 Source: http://www.flickr.com/photos/jamescridland/613445810/sizes/l/in/photo
  • 14. 14
  • 15. 15 “Decades ago, the US Government made both whether data and the GPS System freely available. Since that time, American entrepreneurs and innovators have utilised these resources to create navigation systems, location-based applications, …”
  • 16. 16
  • 18. 18
  • 23. Open Data in Science 23
  • 24. Open Data in Science / Open Access 24
  • 25. How can publish and access structured data on the Web?
  • 26. My plan for today… • Open Data – Principles and Examples ! • Technique #1: Linked (Open) Data ! • Technique #2: Microdata ! • Open Data Activities in Austria ! • Questions / Discussion 26
  • 27. Linked Data ! “A method of publishing structured data so that it can be interlinked and become more useful. ! It builds upon standard Web technologies such as HTTP, RDF 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” ! [Bizer, Heath, Berners-Lee 2009] 27
  • 28. Linked Open Data 28Open Data + Linked Data = Linked Open Data
  • 33. Web Architecture • A set of simple standards – Uniform global addressing (URI) – Uniform document encoding (HTML) – Uniform transportation (HTTP) • Hyperlinks connecting documents • Works pretty well for accessing and exchanging documents

  • 34. How can publish and access structured data on the Web?
  • 35. Web Services and Web APIs Source: http://www.blogperfume.com/new-27-circular-social-media-icons-in-3-sizes/
  • 36. Web Services and Web APIs • Each Web API has a proprietary interface • Datasources must be known in advance • Information entities (papers, authors, subjects, etc.) are often not linked
  • 37. 37 Social Networking Sites as Walled Gardens by David Simonds
  • 38. Linked Data Vision • Publish and link structured data on the Web • Create a single globally connected data space based on the Web Architecture
  • 39. Web of Linked Data • A set of simple standards – Uniform global addressing (URI) – Uniform data model (RDF) – Uniform transportation (HTTP) • RDF links connecting entities • Forms a global data space and facilitates accessing and exchanging data

  • 40. What is Linked Data? • A method to build a Web of Data • Architectural style, set of standards
  • 41. Linking Open Data Project • A W3C community project with the goal to extend the Web with a data commons by publishing various open data sets as RDF on the Web and by setting links between data items from different sources
  • 42.
  • 43.
  • 44.
  • 45.
  • 46.
  • 47. ~$ curl -I -H "Accept: text/turtle" http://dbpedia.org/resource/The_Shining_(film) ! ~$ curl -H "Accept: text/turtle" http://dbpedia.org/data/The_Shining_(film).ttl ~$ sudo apt-get install raptor (Linux) ~$ brew install raptor (Mac OSX) ~$ rapper http://dbpedia.org/resource/The_Shining_(film)
  • 49. RDF • A data model for representing data on the Web • Several statements (triples) form a graph
  • 50. RDF/XML, N3, Turtle, etc. • Data formats for RDF resource representations • Used to transfer RDF data between apps
  • 51. RDFS • A language for describing the syntax and semantics of schemas/vocabularies in a machine-understandable way http://dbpedia.org/ontology/ Film http://dbpedia.org/ontology/ Work rdfs:subClassOf
  • 52. OWL • A more expressive (formal) language for defining the syntax and semantics of schemas/vocabularies • Solves RDFS shortcomings but introduces quite some complexity
  • 53. SKOS • A language for describing controlled vocabularies (taxonomies, thesauri, classification schemes)
  • 54. SPARQL • A query language and protocol for accessing RDF data on the Web SELECT DISTINCT ?x WHERE { ! ?x dcterms:subject ! <http://dbpedia.org/resource/Category:1980s_horror_films> . }
  • 55. Database Systems Analogy... Purpose Relational Database Management Systems (RDBMS) Linked Data Technologies Query Schema Definition Language Data Representation Identifiers 55 ?
  • 56. Database Systems Analogy... Purpose Relational Database Management Systems (RDBMS) Linked Data Technologies Query SQL SPARQL Schema Definition Language SQL DDL RDFS / OWL Data Representation Relational Model / Tables RDF / Graph Identifiers Primary Keys (numeric sequences) URI 56
  • 57. DBPedia Query Demo 57 SELECT ?person (count(DISTINCT ?spouse) as ?spouses) where { ?person a yago:AmericanFilmActors . ?person dbpprop:spouse ?spouse . ! } ORDER BY DESC(?spouses) LIMIT 100
  • 59.
  • 60.
  • 61.
  • 62.
  • 63.
  • 64.
  • 65. 65
  • 66. 66
  • 67. Google Knowledge Graph • Enables search for things (people, places) that Google knows about ! • Rooted in public sources such as Freebase, Wikipedia, CIA World Factbook, etc. – augmented to 500M objects, 3.5B facts and relationship ! • Next generation search (semantic index) 67
  • 68. 68
  • 69. 69
  • 70. My plan for today… • Open Data – Principles and Examples ! • Technique #1: Linked (Open) Data ! • Technique #2: Microdata ! • Open Data Activities in Austria ! • Questions / Discussion 70
  • 71. Rich Snippets / Microdata 71
  • 72. Microdata (HTML5) • An HTML 5 specification used to nest structured data within existing content on Web pages. ! • Search engines and browsers can extract and process Microdata and provide richer browsing experience for users
  • 73. Microdata Example <div itemscope itemtype="http://schema.org/Person"> ! ! <span itemprop="name">Bernhard Haslhofer</span>, ! <span itemprop="nickname">behas</span>. ! <div !itemprop="address” ! !itemscope itemtype="http://schema.org/PostalAddress"> ! ! <span itemprop="streetAddress">301 College Avenue</span> ! ! <span itemprop=”addressLocality">Ithaca</span> ! ! <span itemprop=”addressCountry">United States</span> ! </div> </div>
  • 75.
  • 76. schema.org / Microdata example <h1>Pirates of the Carribean: On Stranger Tides (2011)</h1> Jack Sparrow and Barbossa embark on a quest to find the elusive fountain of youth, only to discover that Blackbeard and his daughter are after it too. ! Director: Rob Marshall Writers: Ted Elliott, Terry Rossio, and 7 more credits Stars: Johnny Depp, Penelope Cruz, Ian McShane 8/10 stars from 200 users. Reviews: 50.
  • 78. schema.org • Defines – a number of types (e.g, person), organized in an inheritance hierarchy – a number of properties (e.g., name) • Extension mechanisms to extend the schemas • OWL representation: http://schema.org/ docs/schemaorg.owl • http://schema.rdfs.org/index.html 78
  • 80.
  • 81. 81
  • 82.
  • 83. My plan for today… • Open Data – Principles and Examples ! • Technique #1: Linked (Open) Data ! • Technique #2: Microdata ! • Open Data Activities in Austria ! • Questions / Discussion 83
  • 84. 84
  • 87. 87
  • 89. My plan for today… • Open Data – The idea ! • Implementation #1: Linked Open Data ! • Implementation #2: Machine-readable HTML tags ! • Open Data Activities in Austria ! • Questions / Discussion 89
  • 90. Readings ! • Tom Heath and Christian Bizer (2011) Linked Data: Evolving the Web into a Global Data Space (1st edition). Synthesis Lectures on the Semantic Web: Theory and Technology, 1:1, 1-136. Morgan & Claypool. ! • Jason Ronallo: HTML5 Microdata and Schema.org
 http://journal.code4lib.org/articles/6400